Unicode Finder

"⑄" U+2444(OCR BELT BUCKLE)

U+2444
Pangalan ng Block
Optical Character Recognition
Pangalan
OCR BELT BUCKLE

Programming

C
\u2444
JavaScript
\u2444
Java
\u2444
Json
\u2444
Python
\u2444
Perl
\x{2444}
PHP
\x{2444}
Ruby
\u{2444}
Rust
\u{2444}
Go
\u2444

Web

CSS
\002444
HtmlDecimal
⑄
HtmlHexadecimal
⑄
Url
%E2%91%84

Code

MD5
efe78ae5624ef4020854f2486e3e2951
Sha1
ab3805c3bd884df7a52d4de5d9ce1ccd1153f28b
Base64
4pGE

Mga Halimbawa ng Paggamit

Programming Languages

C:

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

JavaScript:

const char = '\u2444';
console.log(char);  // Output: ⑄

Java:

char c = '\u2444';
System.out.println(c);  // Output: ⑄

JSON:

{"text": "\u2444"}  // Value: ⑄

Python:

char = '\u2444'
print(char)  # Output: ⑄

Perl:

my $char = "\x{2444}";
print $char;  # Output: ⑄

PHP:

$char = "\x{2444}";
echo $char;  // Output: ⑄

Ruby:

char = "\u{2444}"
puts char  # Output: ⑄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002444";  /* Display: ⑄ */
}

HTML Decimal:

<p>HTML decimal: &#9284;</p>  <!-- Display: ⑄ -->

HTML Hexadecimal:

<p>HTML hex: &#x2444;</p>  <!-- Display: ⑄ -->

URL Encoding:

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

Encodings

MD5:

efe78ae5624ef4020854f2486e3e2951

SHA1:

ab3805c3bd884df7a52d4de5d9ce1ccd1153f28b

Base64:

4pGE