White Shogi Piece

Shortcodes

Copy useful codes for white shogi piece symbol ☖ to use in websites, apps, blogs, and docs.

Unicode
U+2616
HTML Code
☖
HEX Code
☖
CSS Code
\2616
JS/JSON
\u2616
Unix/C/PHP/JAVA
0x2616
URL-encode
%E2%98%96

Customize White Shogi Piece

Customize ☖, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use White Shogi Piece Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>☖</span>
HTML Code:
<span>&#9750;</span>
HEX Code:
<span>&#x2616;</span>

Add with CSS

.white-shogi-piece::before {
  content: '\\2616';
}

Set it in JavaScript

document.querySelector('.white-shogi-piece').textContent = '☖';
copied