Unicode Finder

"鄄" U+9104(CJK UNIFIED IDEOGRAPH-9104)

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

Programming

C
\u9104
JavaScript
\u9104
Java
\u9104
Json
\u9104
Python
\u9104
Perl
\x{9104}
PHP
\x{9104}
Ruby
\u{9104}
Rust
\u{9104}
Go
\u9104

Web

CSS
\009104
HtmlDecimal
鄄
HtmlHexadecimal
鄄
Url
%E9%84%84

Code

MD5
956de63db6a096d9def98d4719746de9
Sha1
35807a75e32148def16ea168af19b0d1382d7bbe
Base64
6YSE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9104';
console.log(char);  // Output: 鄄

Java:

char c = '\u9104';
System.out.println(c);  // Output: 鄄

JSON:

{"text": "\u9104"}  // Value: 鄄

Python:

char = '\u9104'
print(char)  # Output: 鄄

Perl:

my $char = "\x{9104}";
print $char;  # Output: 鄄

PHP:

$char = "\x{9104}";
echo $char;  // Output: 鄄

Ruby:

char = "\u{9104}"
puts char  # Output: 鄄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009104";  /* Display: 鄄 */
}

HTML Decimal:

<p>HTML decimal: &#37124;</p>  <!-- Display: 鄄 -->

HTML Hexadecimal:

<p>HTML hex: &#x9104;</p>  <!-- Display: 鄄 -->

URL Encoding:

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

Encodings

MD5:

956de63db6a096d9def98d4719746de9

SHA1:

35807a75e32148def16ea168af19b0d1382d7bbe

Base64:

6YSE