Unicode Finder

"嬢" U+5B22(CJK UNIFIED IDEOGRAPH-5B22)

U+5B22
Nume Bloc
CJK Unified Ideographs
Nume
CJK UNIFIED IDEOGRAPH-5B22

Programming

C
\u5B22
JavaScript
\u5B22
Java
\u5B22
Json
\u5B22
Python
\u5B22
Perl
\x{5B22}
PHP
\x{5B22}
Ruby
\u{5B22}
Rust
\u{5B22}
Go
\u5B22

Web

CSS
\005B22
HtmlDecimal
嬢
HtmlHexadecimal
嬢
Url
%E5%AC%A2

Code

MD5
e42c9efc0f75128cec4e4e45b6be9857
Sha1
8ecacf68cc03d7364e524ef2eff17296e5473a46
Base64
5ayi

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u5B22';
console.log(char);  // Output: 嬢

Java:

char c = '\u5B22';
System.out.println(c);  // Output: 嬢

JSON:

{"text": "\u5B22"}  // Value: 嬢

Python:

char = '\u5B22'
print(char)  # Output: 嬢

Perl:

my $char = "\x{5B22}";
print $char;  # Output: 嬢

PHP:

$char = "\x{5B22}";
echo $char;  // Output: 嬢

Ruby:

char = "\u{5B22}"
puts char  # Output: 嬢

Rust:

let c = '\u{5B22}';
println!("{}", c);  // Output: 嬢

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005B22";  /* Display: 嬢 */
}

HTML Decimal:

<p>HTML decimal: &#23330;</p>  <!-- Display: 嬢 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B22;</p>  <!-- Display: 嬢 -->

URL Encoding:

// 嬢 URL encoding
https://unicodefinder.com/search.php?query=%E5%AC%A2

Encodings

MD5:

e42c9efc0f75128cec4e4e45b6be9857

SHA1:

8ecacf68cc03d7364e524ef2eff17296e5473a46

Base64:

5ayi