Children Crossing

๐Ÿšธ

Shortcodes

Copy useful codes for children crossing symbol ๐Ÿšธ to use in websites, apps, blogs, and docs.

Unicode
U+1F6B8
HTML Code
🚸
HEX Code
🚸
CSS Code
\1F6B8
JS/JSON
\u1F6B8
Unix/C/PHP/JAVA
0x1F6B8
URL-encode
%F0%9F%9A%B8

Customize Children Crossing

Customize ๐Ÿšธ, download it as SVG or PNG, or copy the generated HTML snippet.

๐Ÿšธ
  

How to use Children Crossing Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿšธ</span>
HTML Code:
<span>&#128696;</span>
HEX Code:
<span>&#x1F6B8;</span>

Add with CSS

.children-crossing::before {
  content: '\\1F6B8';
}

Set it in JavaScript

document.querySelector('.children-crossing').textContent = '๐Ÿšธ';
copied