Unicode Finder

"鄅" U+9105(CJK UNIFIED IDEOGRAPH-9105)

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

Programming

C
\u9105
JavaScript
\u9105
Java
\u9105
Json
\u9105
Python
\u9105
Perl
\x{9105}
PHP
\x{9105}
Ruby
\u{9105}
Rust
\u{9105}
Go
\u9105

Web

CSS
\009105
HtmlDecimal
鄅
HtmlHexadecimal
鄅
Url
%E9%84%85

Code

MD5
8d8f64dde9ceef346dd1de8cabe67267
Sha1
410af6603ba19fb3337834756dbb56609d6cf493
Base64
6YSF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9105';
console.log(char);  // Output: 鄅

Java:

char c = '\u9105';
System.out.println(c);  // Output: 鄅

JSON:

{"text": "\u9105"}  // Value: 鄅

Python:

char = '\u9105'
print(char)  # Output: 鄅

Perl:

my $char = "\x{9105}";
print $char;  # Output: 鄅

PHP:

$char = "\x{9105}";
echo $char;  // Output: 鄅

Ruby:

char = "\u{9105}"
puts char  # Output: 鄅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009105";  /* Display: 鄅 */
}

HTML Decimal:

<p>HTML decimal: &#37125;</p>  <!-- Display: 鄅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9105;</p>  <!-- Display: 鄅 -->

URL Encoding:

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

Encodings

MD5:

8d8f64dde9ceef346dd1de8cabe67267

SHA1:

410af6603ba19fb3337834756dbb56609d6cf493

Base64:

6YSF