Unicode Finder

"嫍" U+5ACD(CJK UNIFIED IDEOGRAPH-5ACD)

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

Programming

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

Web

CSS
\005ACD
HtmlDecimal
嫍
HtmlHexadecimal
嫍
Url
%E5%AB%8D

Code

MD5
2e9dbaf3441c8a5415b53ea3a621ac27
Sha1
ce960319972bef4068b8631d76ad6889328b68af
Base64
5auN

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u5ACD';
console.log(char);  // Output: 嫍

Java:

char c = '\u5ACD';
System.out.println(c);  // Output: 嫍

JSON:

{"text": "\u5ACD"}  // Value: 嫍

Python:

char = '\u5ACD'
print(char)  # Output: 嫍

Perl:

my $char = "\x{5ACD}";
print $char;  # Output: 嫍

PHP:

$char = "\x{5ACD}";
echo $char;  // Output: 嫍

Ruby:

char = "\u{5ACD}"
puts char  # Output: 嫍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23245;</p>  <!-- Display: 嫍 -->

HTML Hexadecimal:

<p>HTML hex: &#x5ACD;</p>  <!-- Display: 嫍 -->

URL Encoding:

// 嫍 URL encoding
https://unicodefinder.com/search.php?query=%E5%AB%8D

Encodings

MD5:

2e9dbaf3441c8a5415b53ea3a621ac27

SHA1:

ce960319972bef4068b8631d76ad6889328b68af

Base64:

5auN