Unicode Finder

"嫅" U+5AC5(CJK UNIFIED IDEOGRAPH-5AC5)

U+5AC5
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-5AC5

Programming

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

Web

CSS
\005AC5
HtmlDecimal
嫅
HtmlHexadecimal
嫅
Url
%E5%AB%85

Code

MD5
b99bed0f82774699f20ad38b556f3428
Sha1
d80c298a03450f63ee2373963d88fa6ec5ee5469
Base64
5auF

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5AC5';
console.log(char);  // Output: 嫅

Java:

char c = '\u5AC5';
System.out.println(c);  // Output: 嫅

JSON:

{"text": "\u5AC5"}  // Value: 嫅

Python:

char = '\u5AC5'
print(char)  # Output: 嫅

Perl:

my $char = "\x{5AC5}";
print $char;  # Output: 嫅

PHP:

$char = "\x{5AC5}";
echo $char;  // Output: 嫅

Ruby:

char = "\u{5AC5}"
puts char  # Output: 嫅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23237;</p>  <!-- Display: 嫅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5AC5;</p>  <!-- Display: 嫅 -->

URL Encoding:

// 嫅 URL encoding
https://unicodefinder.com/search.php?query=%E5%AB%85

Encodings

MD5:

b99bed0f82774699f20ad38b556f3428

SHA1:

d80c298a03450f63ee2373963d88fa6ec5ee5469

Base64:

5auF