Unicode Finder

"媛" U+5A9B(CJK UNIFIED IDEOGRAPH-5A9B)

U+5A9B
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5A9B

Programming

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

Web

CSS
\005A9B
HtmlDecimal
媛
HtmlHexadecimal
媛
Url
%E5%AA%9B

Code

MD5
e98592e587874b4cbd5b69fb993a47bc
Sha1
849c3cd5b4327137f65d8428e3173f883eb84e4d
Base64
5aqb

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5A9B';
console.log(char);  // Output: 媛

Java:

char c = '\u5A9B';
System.out.println(c);  // Output: 媛

JSON:

{"text": "\u5A9B"}  // Value: 媛

Python:

char = '\u5A9B'
print(char)  # Output: 媛

Perl:

my $char = "\x{5A9B}";
print $char;  # Output: 媛

PHP:

$char = "\x{5A9B}";
echo $char;  // Output: 媛

Ruby:

char = "\u{5A9B}"
puts char  # Output: 媛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23195;</p>  <!-- Display: 媛 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A9B;</p>  <!-- Display: 媛 -->

URL Encoding:

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

Encodings

MD5:

e98592e587874b4cbd5b69fb993a47bc

SHA1:

849c3cd5b4327137f65d8428e3173f883eb84e4d

Base64:

5aqb