Unicode Finder

"媋" U+5A8B(CJK UNIFIED IDEOGRAPH-5A8B)

U+5A8B
Název Bloku
CJK Unified Ideographs
Název
CJK UNIFIED IDEOGRAPH-5A8B

Programming

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

Web

CSS
\005A8B
HtmlDecimal
媋
HtmlHexadecimal
媋
Url
%E5%AA%8B

Code

MD5
07ed9e9e5e7234d715509e0f51b6d30a
Sha1
11d558fc24414fb605d8c0e23137d4316ced80cb
Base64
5aqL

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u5A8B';
console.log(char);  // Output: 媋

Java:

char c = '\u5A8B';
System.out.println(c);  // Output: 媋

JSON:

{"text": "\u5A8B"}  // Value: 媋

Python:

char = '\u5A8B'
print(char)  # Output: 媋

Perl:

my $char = "\x{5A8B}";
print $char;  # Output: 媋

PHP:

$char = "\x{5A8B}";
echo $char;  // Output: 媋

Ruby:

char = "\u{5A8B}"
puts char  # Output: 媋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23179;</p>  <!-- Display: 媋 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A8B;</p>  <!-- Display: 媋 -->

URL Encoding:

// 媋 URL encoding
https://unicodefinder.com/search.php?query=%E5%AA%8B

Encodings

MD5:

07ed9e9e5e7234d715509e0f51b6d30a

SHA1:

11d558fc24414fb605d8c0e23137d4316ced80cb

Base64:

5aqL