Unicode Finder

"⑃" U+2443(OCR INVERTED FORK)

U+2443
Pangalan ng Block
Optical Character Recognition
Pangalan
OCR INVERTED FORK

Programming

C
\u2443
JavaScript
\u2443
Java
\u2443
Json
\u2443
Python
\u2443
Perl
\x{2443}
PHP
\x{2443}
Ruby
\u{2443}
Rust
\u{2443}
Go
\u2443

Web

CSS
\002443
HtmlDecimal
⑃
HtmlHexadecimal
⑃
Url
%E2%91%83

Code

MD5
c371cf8e9067d06e74522a93f042e430
Sha1
fb8051d5e2f39edf3b7123d684e0005ce8ea91b8
Base64
4pGD

Mga Halimbawa ng Paggamit

Programming Languages

C:

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

JavaScript:

const char = '\u2443';
console.log(char);  // Output: ⑃

Java:

char c = '\u2443';
System.out.println(c);  // Output: ⑃

JSON:

{"text": "\u2443"}  // Value: ⑃

Python:

char = '\u2443'
print(char)  # Output: ⑃

Perl:

my $char = "\x{2443}";
print $char;  # Output: ⑃

PHP:

$char = "\x{2443}";
echo $char;  // Output: ⑃

Ruby:

char = "\u{2443}"
puts char  # Output: ⑃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002443";  /* Display: ⑃ */
}

HTML Decimal:

<p>HTML decimal: &#9283;</p>  <!-- Display: ⑃ -->

HTML Hexadecimal:

<p>HTML hex: &#x2443;</p>  <!-- Display: ⑃ -->

URL Encoding:

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

Encodings

MD5:

c371cf8e9067d06e74522a93f042e430

SHA1:

fb8051d5e2f39edf3b7123d684e0005ce8ea91b8

Base64:

4pGD