Unicode Finder

"鄒" U+9112(CJK UNIFIED IDEOGRAPH-9112)

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

Programming

C
\u9112
JavaScript
\u9112
Java
\u9112
Json
\u9112
Python
\u9112
Perl
\x{9112}
PHP
\x{9112}
Ruby
\u{9112}
Rust
\u{9112}
Go
\u9112

Web

CSS
\009112
HtmlDecimal
鄒
HtmlHexadecimal
鄒
Url
%E9%84%92

Code

MD5
0b31c03a4b0f7ad4df1e4cd65516accf
Sha1
48cd04bd7389a6b435f6ce0e480d9fb3688c2832
Base64
6YSS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9112';
console.log(char);  // Output: 鄒

Java:

char c = '\u9112';
System.out.println(c);  // Output: 鄒

JSON:

{"text": "\u9112"}  // Value: 鄒

Python:

char = '\u9112'
print(char)  # Output: 鄒

Perl:

my $char = "\x{9112}";
print $char;  # Output: 鄒

PHP:

$char = "\x{9112}";
echo $char;  // Output: 鄒

Ruby:

char = "\u{9112}"
puts char  # Output: 鄒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009112";  /* Display: 鄒 */
}

HTML Decimal:

<p>HTML decimal: &#37138;</p>  <!-- Display: 鄒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9112;</p>  <!-- Display: 鄒 -->

URL Encoding:

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

Encodings

MD5:

0b31c03a4b0f7ad4df1e4cd65516accf

SHA1:

48cd04bd7389a6b435f6ce0e480d9fb3688c2832

Base64:

6YSS