Caret Insertion Point

Shortcodes

Copy and paste codes for Caret Insertion Point symbol ⁁ to use in your websites, apps, blogs, and more.

Unicode
U+2041
HTML Code
⁁
HEX Code
⁁
CSS Code
\2041
JS/JSON
\u2041
Unix/C/PHP/JAVA
0x2041
URL-encode
%E2%81%81
copied

Customize Caret Insertion Point Symbol

Customize ⁁ symbol as you like and download Caret Insertion Point 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 Caret Insertion Point symbol in HTML, CSS, and JS?

Insert ⁁ Caret Insertion Point using HTML

1. Copy-paste Caret Insertion Point directly:
<span>⁁</span>
2. HTML Decimal Code:
<span>&#8257;</span>
3. Hexadecimal Code:
<span>&#x2041;</span>
Preview:

Add Caret Insertion Point symbol with CSS

.caret-insertion-point::before {
    content: '\\2041';
}
Preview: Caret Insertion Point

Caret Insertion Point JavaScript Code

1. Direct Symbol:
document.querySelector('.caret-insertion-point').textContent = '⁁';
2. Unicode Escape for ⁁:
document.querySelector('.caret-insertion-point').textContent = '\u2041';
Preview: