Text Quote
Add quotes around text with custom left and right quote characters. Supports multiple quote styles and per-line mode.
What types of quote characters are supported?
Straight quotes (" "), curly/typographic quotes (" " ' '), guillemets (« »), angle quotes (‹ ›), CJK quotes (「 」 『 』), and any custom character.
How to add quotes to multiple lines at once?
Paste multi-line text and enable per-line mode. Each line gets wrapped individually. You can also wrap entire text as one block.
What is the difference between straight and curly quotes?
Straight quotes (" ') are keyboard standards for programming. Curly quotes (" " ' ') are typographic with distinct opening/closing forms, preferred in professional typesetting.
How to use quotes in programming?
Use straight quotes (" or ') for string literals. Most languages require them. JavaScript also supports backticks (`) for template strings.
What are smart quotes vs dumb quotes?
Smart quotes (curly) auto-use distinct opening/closing forms: " " or ' '. Dumb quotes (straight) use same character: " or '. Word processors often auto-convert.
How do different languages use quote styles?
English uses " ", French uses « » with spaces, German uses „ ", Spanish uses « », CJK uses 「 」 or 『 』. All conventions supported.
Can I use same character for left and right quotes?
Yes. Set same character for both. Useful for programming strings or simple markers like |text| or #text#.
How to remove quotes from text?
Set both quote characters to empty to pass text unchanged. To strip existing quotes, use find-and-replace to remove quote characters.
Citation quotes vs programming quotes?
Citation quotes mark quoted material using typographic styles like " " or « ». Programming quotes are for string literals using straight " or ' or backticks `.
How to handle nested quotes?
Alternate styles: double quotes " " outside, single ' ' inside. In CJK, use 「 」 outside and 『 』 inside.