Unicode Finder

"ㄒ" U+3112(BOPOMOFO LETTER X)

U+3112
Nume Bloc
Bopomofo
Nume
BOPOMOFO LETTER X

Programming

C
\u3112
JavaScript
\u3112
Java
\u3112
Json
\u3112
Python
\u3112
Perl
\x{3112}
PHP
\x{3112}
Ruby
\u{3112}
Rust
\u{3112}
Go
\u3112

Web

CSS
\003112
HtmlDecimal
ㄒ
HtmlHexadecimal
ㄒ
Url
%E3%84%92

Code

MD5
f83cc3bc39d0ff8a9286c532eaa918c9
Sha1
dce4e59b42dbbac9e1140a516eec3f586a417df4
Base64
44SS

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u3112';
console.log(char);  // Output: ㄒ

Java:

char c = '\u3112';
System.out.println(c);  // Output: ㄒ

JSON:

{"text": "\u3112"}  // Value: ㄒ

Python:

char = '\u3112'
print(char)  # Output: ㄒ

Perl:

my $char = "\x{3112}";
print $char;  # Output: ㄒ

PHP:

$char = "\x{3112}";
echo $char;  // Output: ㄒ

Ruby:

char = "\u{3112}"
puts char  # Output: ㄒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\003112";  /* Display: ㄒ */
}

HTML Decimal:

<p>HTML decimal: &#12562;</p>  <!-- Display: ㄒ -->

HTML Hexadecimal:

<p>HTML hex: &#x3112;</p>  <!-- Display: ㄒ -->

URL Encoding:

// ㄒ URL encoding
https://unicodefinder.com/search.php?query=%E3%84%92

Encodings

MD5:

f83cc3bc39d0ff8a9286c532eaa918c9

SHA1:

dce4e59b42dbbac9e1140a516eec3f586a417df4

Base64:

44SS