Unicode Finder

"媼" U+5ABC(CJK UNIFIED IDEOGRAPH-5ABC)

U+5ABC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5ABC

Programming

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

Web

CSS
\005ABC
HtmlDecimal
媼
HtmlHexadecimal
媼
Url
%E5%AA%BC

Code

MD5
417af16c17249f1608861848aaa87dce
Sha1
96295aa6db2c81cbc559c442b3fb7f66416fe04c
Base64
5aq8

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5ABC';
console.log(char);  // Output: 媼

Java:

char c = '\u5ABC';
System.out.println(c);  // Output: 媼

JSON:

{"text": "\u5ABC"}  // Value: 媼

Python:

char = '\u5ABC'
print(char)  # Output: 媼

Perl:

my $char = "\x{5ABC}";
print $char;  # Output: 媼

PHP:

$char = "\x{5ABC}";
echo $char;  // Output: 媼

Ruby:

char = "\u{5ABC}"
puts char  # Output: 媼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23228;</p>  <!-- Display: 媼 -->

HTML Hexadecimal:

<p>HTML hex: &#x5ABC;</p>  <!-- Display: 媼 -->

URL Encoding:

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

Encodings

MD5:

417af16c17249f1608861848aaa87dce

SHA1:

96295aa6db2c81cbc559c442b3fb7f66416fe04c

Base64:

5aq8