Unicode Finder

"⛁" U+26C1(WHITE DRAUGHTS KING)

U+26C1
Block Name
Miscellaneous Symbols
Name
WHITE DRAUGHTS KING

Programming

C
\u26C1
JavaScript
\u26C1
Java
\u26C1
Json
\u26C1
Python
\u26C1
Perl
\x{26C1}
PHP
\x{26C1}
Ruby
\u{26C1}
Rust
\u{26C1}
Go
\u26C1

Web

CSS
\0026C1
HtmlDecimal
⛁
HtmlHexadecimal
⛁
Url
%E2%9B%81

Code

MD5
317658d467673c07a0c55842870dfe5a
Sha1
c718bf2449e3038a193a3de0d183078de1a283f8
Base64
4puB

Usage Examples

Programming Languages

C:

char c = '\u26C1';
printf("%c\n", c);  // Output: ⛁

JavaScript:

const char = '\u26C1';
console.log(char);  // Output: ⛁

Java:

char c = '\u26C1';
System.out.println(c);  // Output: ⛁

JSON:

{"text": "\u26C1"}  // Value: ⛁

Python:

char = '\u26C1'
print(char)  # Output: ⛁

Perl:

my $char = "\x{26C1}";
print $char;  # Output: ⛁

PHP:

$char = "\x{26C1}";
echo $char;  // Output: ⛁

Ruby:

char = "\u{26C1}"
puts char  # Output: ⛁

Rust:

let c = '\u{26C1}';
println!("{}", c);  // Output: ⛁

Go:

char := '\u26C1'
fmt.Printf("%c\n", char)  // Output: ⛁

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0026C1";  /* Display: ⛁ */
}

HTML Decimal:

<p>HTML decimal: &#9921;</p>  <!-- Display: ⛁ -->

HTML Hexadecimal:

<p>HTML hex: &#x26C1;</p>  <!-- Display: ⛁ -->

URL Encoding:

// ⛁ URL encoding
https://unicodefinder.com/search.php?query=%E2%9B%81

Encodings

MD5:

317658d467673c07a0c55842870dfe5a

SHA1:

c718bf2449e3038a193a3de0d183078de1a283f8

Base64:

4puB