Unicode Finder

"⮽" U+2BBD(BALLOT BOX WITH LIGHT X)

U+2BBD
Block Name
Miscellaneous Symbols and Arrows
Name
BALLOT BOX WITH LIGHT X

Programming

C
\u2BBD
JavaScript
\u2BBD
Java
\u2BBD
Json
\u2BBD
Python
\u2BBD
Perl
\x{2BBD}
PHP
\x{2BBD}
Ruby
\u{2BBD}
Rust
\u{2BBD}
Go
\u2BBD

Web

CSS
\002BBD
HtmlDecimal
⮽
HtmlHexadecimal
⮽
Url
%E2%AE%BD

Code

MD5
88b3a3cd695bb3b68f340f9bca134215
Sha1
edf536fdc36f57e129317f407437a8e47fd54724
Base64
4q69

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2BBD';
console.log(char);  // Output: ⮽

Java:

char c = '\u2BBD';
System.out.println(c);  // Output: ⮽

JSON:

{"text": "\u2BBD"}  // Value: ⮽

Python:

char = '\u2BBD'
print(char)  # Output: ⮽

Perl:

my $char = "\x{2BBD}";
print $char;  # Output: ⮽

PHP:

$char = "\x{2BBD}";
echo $char;  // Output: ⮽

Ruby:

char = "\u{2BBD}"
puts char  # Output: ⮽

Rust:

let c = '\u{2BBD}';
println!("{}", c);  // Output: ⮽

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002BBD";  /* Display: ⮽ */
}

HTML Decimal:

<p>HTML decimal: &#11197;</p>  <!-- Display: ⮽ -->

HTML Hexadecimal:

<p>HTML hex: &#x2BBD;</p>  <!-- Display: ⮽ -->

URL Encoding:

// ⮽ URL encoding
https://unicodefinder.com/search.php?query=%E2%AE%BD

Encodings

MD5:

88b3a3cd695bb3b68f340f9bca134215

SHA1:

edf536fdc36f57e129317f407437a8e47fd54724

Base64:

4q69