Unicode Finder

"鄑" U+9111(CJK UNIFIED IDEOGRAPH-9111)

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

Programming

C
\u9111
JavaScript
\u9111
Java
\u9111
Json
\u9111
Python
\u9111
Perl
\x{9111}
PHP
\x{9111}
Ruby
\u{9111}
Rust
\u{9111}
Go
\u9111

Web

CSS
\009111
HtmlDecimal
鄑
HtmlHexadecimal
鄑
Url
%E9%84%91

Code

MD5
3b0ecfac5adf9358f91c53148a3f54d0
Sha1
18597cb7a27a18a709bebd574de6b52ea7954690
Base64
6YSR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9111';
console.log(char);  // Output: 鄑

Java:

char c = '\u9111';
System.out.println(c);  // Output: 鄑

JSON:

{"text": "\u9111"}  // Value: 鄑

Python:

char = '\u9111'
print(char)  # Output: 鄑

Perl:

my $char = "\x{9111}";
print $char;  # Output: 鄑

PHP:

$char = "\x{9111}";
echo $char;  // Output: 鄑

Ruby:

char = "\u{9111}"
puts char  # Output: 鄑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009111";  /* Display: 鄑 */
}

HTML Decimal:

<p>HTML decimal: &#37137;</p>  <!-- Display: 鄑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9111;</p>  <!-- Display: 鄑 -->

URL Encoding:

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

Encodings

MD5:

3b0ecfac5adf9358f91c53148a3f54d0

SHA1:

18597cb7a27a18a709bebd574de6b52ea7954690

Base64:

6YSR