Unicode Finder

"鄔" U+9114(CJK UNIFIED IDEOGRAPH-9114)

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

Programming

C
\u9114
JavaScript
\u9114
Java
\u9114
Json
\u9114
Python
\u9114
Perl
\x{9114}
PHP
\x{9114}
Ruby
\u{9114}
Rust
\u{9114}
Go
\u9114

Web

CSS
\009114
HtmlDecimal
鄔
HtmlHexadecimal
鄔
Url
%E9%84%94

Code

MD5
18242fd10b506adb40ad4b3e38c5d154
Sha1
affbe4d793b9aa8fc66d7b8a18b32de8307d2b14
Base64
6YSU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9114';
console.log(char);  // Output: 鄔

Java:

char c = '\u9114';
System.out.println(c);  // Output: 鄔

JSON:

{"text": "\u9114"}  // Value: 鄔

Python:

char = '\u9114'
print(char)  # Output: 鄔

Perl:

my $char = "\x{9114}";
print $char;  # Output: 鄔

PHP:

$char = "\x{9114}";
echo $char;  // Output: 鄔

Ruby:

char = "\u{9114}"
puts char  # Output: 鄔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009114";  /* Display: 鄔 */
}

HTML Decimal:

<p>HTML decimal: &#37140;</p>  <!-- Display: 鄔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9114;</p>  <!-- Display: 鄔 -->

URL Encoding:

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

Encodings

MD5:

18242fd10b506adb40ad4b3e38c5d154

SHA1:

affbe4d793b9aa8fc66d7b8a18b32de8307d2b14

Base64:

6YSU