Turned Semicolon

Shortcodes

Copy and paste codes for Turned Semicolon symbol ⸵ to use in your websites, apps, blogs, and more.

Unicode
U+2E35
HTML Code
⸵
HEX Code
⸵
CSS Code
\2E35
JS/JSON
\u2E35
Unix/C/PHP/JAVA
0x2E35
URL-encode
%E2%B8%B5
copied

Customize Turned Semicolon Symbol

Customize ⸵ symbol as you like and download Turned Semicolon as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Turned Semicolon symbol in HTML, CSS, and JS?

Insert ⸵ Turned Semicolon using HTML

1. Copy-paste Turned Semicolon directly:
<span>⸵</span>
2. HTML Decimal Code:
<span>&#11829;</span>
3. Hexadecimal Code:
<span>&#x2E35;</span>
Preview:

Add Turned Semicolon symbol with CSS

.turned-semicolon::before {
    content: '\\2E35';
}
Preview: Turned Semicolon

Turned Semicolon JavaScript Code

1. Direct Symbol:
document.querySelector('.turned-semicolon').textContent = '⸵';
2. Unicode Escape for ⸵:
document.querySelector('.turned-semicolon').textContent = '\u2E35';
Preview: