Unicode Finder

"鄥" U+9125(CJK UNIFIED IDEOGRAPH-9125)

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

Programming

C
\u9125
JavaScript
\u9125
Java
\u9125
Json
\u9125
Python
\u9125
Perl
\x{9125}
PHP
\x{9125}
Ruby
\u{9125}
Rust
\u{9125}
Go
\u9125

Web

CSS
\009125
HtmlDecimal
鄥
HtmlHexadecimal
鄥
Url
%E9%84%A5

Code

MD5
e479caeef4e9d92066f91540b9c98f41
Sha1
10d2a67f76f446bf1c0602eef9036c3c9370b913
Base64
6YSl

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9125';
console.log(char);  // Output: 鄥

Java:

char c = '\u9125';
System.out.println(c);  // Output: 鄥

JSON:

{"text": "\u9125"}  // Value: 鄥

Python:

char = '\u9125'
print(char)  # Output: 鄥

Perl:

my $char = "\x{9125}";
print $char;  # Output: 鄥

PHP:

$char = "\x{9125}";
echo $char;  // Output: 鄥

Ruby:

char = "\u{9125}"
puts char  # Output: 鄥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009125";  /* Display: 鄥 */
}

HTML Decimal:

<p>HTML decimal: &#37157;</p>  <!-- Display: 鄥 -->

HTML Hexadecimal:

<p>HTML hex: &#x9125;</p>  <!-- Display: 鄥 -->

URL Encoding:

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

Encodings

MD5:

e479caeef4e9d92066f91540b9c98f41

SHA1:

10d2a67f76f446bf1c0602eef9036c3c9370b913

Base64:

6YSl