Unicode Finder

"單" U+55AE(CJK UNIFIED IDEOGRAPH-55AE)

U+55AE
Nom du Bloc
CJK Unified Ideographs
Nom
CJK UNIFIED IDEOGRAPH-55AE

Programming

C
\u55AE
JavaScript
\u55AE
Java
\u55AE
Json
\u55AE
Python
\u55AE
Perl
\x{55AE}
PHP
\x{55AE}
Ruby
\u{55AE}
Rust
\u{55AE}
Go
\u55AE

Web

CSS
\0055AE
HtmlDecimal
單
HtmlHexadecimal
單
Url
%E5%96%AE

Code

MD5
281602a18f1393b6e68a25d0816e2579
Sha1
375b6af75a18d520c91382fcc2e9d7c5ad41b85f
Base64
5Zau

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u55AE';
console.log(char);  // Output: 單

Java:

char c = '\u55AE';
System.out.println(c);  // Output: 單

JSON:

{"text": "\u55AE"}  // Value: 單

Python:

char = '\u55AE'
print(char)  # Output: 單

Perl:

my $char = "\x{55AE}";
print $char;  # Output: 單

PHP:

$char = "\x{55AE}";
echo $char;  // Output: 單

Ruby:

char = "\u{55AE}"
puts char  # Output: 單

Rust:

let c = '\u{55AE}';
println!("{}", c);  // Output: 單

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0055AE";  /* Display: 單 */
}

HTML Decimal:

<p>HTML decimal: &#21934;</p>  <!-- Display: 單 -->

HTML Hexadecimal:

<p>HTML hex: &#x55AE;</p>  <!-- Display: 單 -->

URL Encoding:

// 單 URL encoding
https://unicodefinder.com/search.php?query=%E5%96%AE

Encodings

MD5:

281602a18f1393b6e68a25d0816e2579

SHA1:

375b6af75a18d520c91382fcc2e9d7c5ad41b85f

Base64:

5Zau