Unicode Finder

"啳" U+5573(CJK UNIFIED IDEOGRAPH-5573)

U+5573
Nom du Bloc
CJK Unified Ideographs
Nom
CJK UNIFIED IDEOGRAPH-5573

Programming

C
\u5573
JavaScript
\u5573
Java
\u5573
Json
\u5573
Python
\u5573
Perl
\x{5573}
PHP
\x{5573}
Ruby
\u{5573}
Rust
\u{5573}
Go
\u5573

Web

CSS
\005573
HtmlDecimal
啳
HtmlHexadecimal
啳
Url
%E5%95%B3

Code

MD5
4f02aec5aa61645484ae6d42416ed567
Sha1
339c87f0b5efe6175f9f4663efe8fa1e3d764afa
Base64
5ZWz

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u5573';
console.log(char);  // Output: 啳

Java:

char c = '\u5573';
System.out.println(c);  // Output: 啳

JSON:

{"text": "\u5573"}  // Value: 啳

Python:

char = '\u5573'
print(char)  # Output: 啳

Perl:

my $char = "\x{5573}";
print $char;  # Output: 啳

PHP:

$char = "\x{5573}";
echo $char;  // Output: 啳

Ruby:

char = "\u{5573}"
puts char  # Output: 啳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005573";  /* Display: 啳 */
}

HTML Decimal:

<p>HTML decimal: &#21875;</p>  <!-- Display: 啳 -->

HTML Hexadecimal:

<p>HTML hex: &#x5573;</p>  <!-- Display: 啳 -->

URL Encoding:

// 啳 URL encoding
https://unicodefinder.com/search.php?query=%E5%95%B3

Encodings

MD5:

4f02aec5aa61645484ae6d42416ed567

SHA1:

339c87f0b5efe6175f9f4663efe8fa1e3d764afa

Base64:

5ZWz