Unicode Finder

"嫈" U+5AC8(CJK UNIFIED IDEOGRAPH-5AC8)

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

Programming

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

Web

CSS
\005AC8
HtmlDecimal
嫈
HtmlHexadecimal
嫈
Url
%E5%AB%88

Code

MD5
1e0a211a8c9443897468c8d6a5bccf86
Sha1
488ed29b202dc6cd501875f9eb606d838e7f91f2
Base64
5auI

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u5AC8';
console.log(char);  // Output: 嫈

Java:

char c = '\u5AC8';
System.out.println(c);  // Output: 嫈

JSON:

{"text": "\u5AC8"}  // Value: 嫈

Python:

char = '\u5AC8'
print(char)  # Output: 嫈

Perl:

my $char = "\x{5AC8}";
print $char;  # Output: 嫈

PHP:

$char = "\x{5AC8}";
echo $char;  // Output: 嫈

Ruby:

char = "\u{5AC8}"
puts char  # Output: 嫈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23240;</p>  <!-- Display: 嫈 -->

HTML Hexadecimal:

<p>HTML hex: &#x5AC8;</p>  <!-- Display: 嫈 -->

URL Encoding:

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

Encodings

MD5:

1e0a211a8c9443897468c8d6a5bccf86

SHA1:

488ed29b202dc6cd501875f9eb606d838e7f91f2

Base64:

5auI