Unicode Finder

"亜" U+4E9C(CJK UNIFIED IDEOGRAPH-4E9C)

U+4E9C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-4E9C

Programming

C
\u4E9C
JavaScript
\u4E9C
Java
\u4E9C
Json
\u4E9C
Python
\u4E9C
Perl
\x{4E9C}
PHP
\x{4E9C}
Ruby
\u{4E9C}
Rust
\u{4E9C}
Go
\u4E9C

Web

CSS
\004E9C
HtmlDecimal
亜
HtmlHexadecimal
亜
Url
%E4%BA%9C

Code

MD5
aa594445bbd6b22530b36a89286ee11a
Sha1
1896e313953fc22c5d7e031fb88e8ed94353e127
Base64
5Lqc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4E9C';
console.log(char);  // Output: 亜

Java:

char c = '\u4E9C';
System.out.println(c);  // Output: 亜

JSON:

{"text": "\u4E9C"}  // Value: 亜

Python:

char = '\u4E9C'
print(char)  # Output: 亜

Perl:

my $char = "\x{4E9C}";
print $char;  # Output: 亜

PHP:

$char = "\x{4E9C}";
echo $char;  // Output: 亜

Ruby:

char = "\u{4E9C}"
puts char  # Output: 亜

Rust:

let c = '\u{4E9C}';
println!("{}", c);  // Output: 亜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004E9C";  /* Display: 亜 */
}

HTML Decimal:

<p>HTML decimal: &#20124;</p>  <!-- Display: 亜 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E9C;</p>  <!-- Display: 亜 -->

URL Encoding:

// 亜 URL encoding
https://unicodefinder.com/search.php?query=%E4%BA%9C

Encodings

MD5:

aa594445bbd6b22530b36a89286ee11a

SHA1:

1896e313953fc22c5d7e031fb88e8ed94353e127

Base64:

5Lqc