Unicode Finder

"⑁" U+2441(OCR CHAIR)

U+2441
Pangalan ng Block
Optical Character Recognition
Pangalan
OCR CHAIR

Programming

C
\u2441
JavaScript
\u2441
Java
\u2441
Json
\u2441
Python
\u2441
Perl
\x{2441}
PHP
\x{2441}
Ruby
\u{2441}
Rust
\u{2441}
Go
\u2441

Web

CSS
\002441
HtmlDecimal
⑁
HtmlHexadecimal
⑁
Url
%E2%91%81

Code

MD5
a546de22295199f37d53771db5289451
Sha1
3ccc0e0d4992c94e4d056c5b298ed8e45cf99437
Base64
4pGB

Mga Halimbawa ng Paggamit

Programming Languages

C:

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

JavaScript:

const char = '\u2441';
console.log(char);  // Output: ⑁

Java:

char c = '\u2441';
System.out.println(c);  // Output: ⑁

JSON:

{"text": "\u2441"}  // Value: ⑁

Python:

char = '\u2441'
print(char)  # Output: ⑁

Perl:

my $char = "\x{2441}";
print $char;  # Output: ⑁

PHP:

$char = "\x{2441}";
echo $char;  // Output: ⑁

Ruby:

char = "\u{2441}"
puts char  # Output: ⑁

Rust:

let c = '\u{2441}';
println!("{}", c);  // Output: ⑁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002441";  /* Display: ⑁ */
}

HTML Decimal:

<p>HTML decimal: &#9281;</p>  <!-- Display: ⑁ -->

HTML Hexadecimal:

<p>HTML hex: &#x2441;</p>  <!-- Display: ⑁ -->

URL Encoding:

// ⑁ URL encoding
https://unicodefinder.com/search.php?query=%E2%91%81

Encodings

MD5:

a546de22295199f37d53771db5289451

SHA1:

3ccc0e0d4992c94e4d056c5b298ed8e45cf99437

Base64:

4pGB