Unicode Finder

"媢" U+5AA2(CJK UNIFIED IDEOGRAPH-5AA2)

U+5AA2
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5AA2

Programming

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

Web

CSS
\005AA2
HtmlDecimal
媢
HtmlHexadecimal
媢
Url
%E5%AA%A2

Code

MD5
5316145225f610310fdeb51cbe2dc7f1
Sha1
dc535853b092ddb71e9dae619147e51b0a83280b
Base64
5aqi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5AA2';
console.log(char);  // Output: 媢

Java:

char c = '\u5AA2';
System.out.println(c);  // Output: 媢

JSON:

{"text": "\u5AA2"}  // Value: 媢

Python:

char = '\u5AA2'
print(char)  # Output: 媢

Perl:

my $char = "\x{5AA2}";
print $char;  # Output: 媢

PHP:

$char = "\x{5AA2}";
echo $char;  // Output: 媢

Ruby:

char = "\u{5AA2}"
puts char  # Output: 媢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23202;</p>  <!-- Display: 媢 -->

HTML Hexadecimal:

<p>HTML hex: &#x5AA2;</p>  <!-- Display: 媢 -->

URL Encoding:

// 媢 URL encoding
https://unicodefinder.com/search.php?query=%E5%AA%A2

Encodings

MD5:

5316145225f610310fdeb51cbe2dc7f1

SHA1:

dc535853b092ddb71e9dae619147e51b0a83280b

Base64:

5aqi