Unicode Finder

"鄆" U+9106(CJK UNIFIED IDEOGRAPH-9106)

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

Programming

C
\u9106
JavaScript
\u9106
Java
\u9106
Json
\u9106
Python
\u9106
Perl
\x{9106}
PHP
\x{9106}
Ruby
\u{9106}
Rust
\u{9106}
Go
\u9106

Web

CSS
\009106
HtmlDecimal
鄆
HtmlHexadecimal
鄆
Url
%E9%84%86

Code

MD5
c91c0b7b7a2bda0c219a2009ae2a4973
Sha1
df0b1509560c84711aee665a94a47708948ace68
Base64
6YSG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9106';
console.log(char);  // Output: 鄆

Java:

char c = '\u9106';
System.out.println(c);  // Output: 鄆

JSON:

{"text": "\u9106"}  // Value: 鄆

Python:

char = '\u9106'
print(char)  # Output: 鄆

Perl:

my $char = "\x{9106}";
print $char;  # Output: 鄆

PHP:

$char = "\x{9106}";
echo $char;  // Output: 鄆

Ruby:

char = "\u{9106}"
puts char  # Output: 鄆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009106";  /* Display: 鄆 */
}

HTML Decimal:

<p>HTML decimal: &#37126;</p>  <!-- Display: 鄆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9106;</p>  <!-- Display: 鄆 -->

URL Encoding:

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

Encodings

MD5:

c91c0b7b7a2bda0c219a2009ae2a4973

SHA1:

df0b1509560c84711aee665a94a47708948ace68

Base64:

6YSG