Unicode Finder

"鄂" U+9102(CJK UNIFIED IDEOGRAPH-9102)

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

Programming

C
\u9102
JavaScript
\u9102
Java
\u9102
Json
\u9102
Python
\u9102
Perl
\x{9102}
PHP
\x{9102}
Ruby
\u{9102}
Rust
\u{9102}
Go
\u9102

Web

CSS
\009102
HtmlDecimal
鄂
HtmlHexadecimal
鄂
Url
%E9%84%82

Code

MD5
e18cf52dc6957dc0c9727d5b4f0cf129
Sha1
1236444ac5aa50378e19d1f1702f0143922e4d1d
Base64
6YSC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9102';
console.log(char);  // Output: 鄂

Java:

char c = '\u9102';
System.out.println(c);  // Output: 鄂

JSON:

{"text": "\u9102"}  // Value: 鄂

Python:

char = '\u9102'
print(char)  # Output: 鄂

Perl:

my $char = "\x{9102}";
print $char;  # Output: 鄂

PHP:

$char = "\x{9102}";
echo $char;  // Output: 鄂

Ruby:

char = "\u{9102}"
puts char  # Output: 鄂

Rust:

let c = '\u{9102}';
println!("{}", c);  // Output: 鄂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009102";  /* Display: 鄂 */
}

HTML Decimal:

<p>HTML decimal: &#37122;</p>  <!-- Display: 鄂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9102;</p>  <!-- Display: 鄂 -->

URL Encoding:

// 鄂 URL encoding
https://unicodefinder.com/search.php?query=%E9%84%82

Encodings

MD5:

e18cf52dc6957dc0c9727d5b4f0cf129

SHA1:

1236444ac5aa50378e19d1f1702f0143922e4d1d

Base64:

6YSC