Unicode Finder

"鄐" U+9110(CJK UNIFIED IDEOGRAPH-9110)

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

Programming

C
\u9110
JavaScript
\u9110
Java
\u9110
Json
\u9110
Python
\u9110
Perl
\x{9110}
PHP
\x{9110}
Ruby
\u{9110}
Rust
\u{9110}
Go
\u9110

Web

CSS
\009110
HtmlDecimal
鄐
HtmlHexadecimal
鄐
Url
%E9%84%90

Code

MD5
59b7c9a31671b5e735333f62afefda81
Sha1
f8f3c4799cef0b3f8233eae7a4dd6869a087fe32
Base64
6YSQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9110';
console.log(char);  // Output: 鄐

Java:

char c = '\u9110';
System.out.println(c);  // Output: 鄐

JSON:

{"text": "\u9110"}  // Value: 鄐

Python:

char = '\u9110'
print(char)  # Output: 鄐

Perl:

my $char = "\x{9110}";
print $char;  # Output: 鄐

PHP:

$char = "\x{9110}";
echo $char;  // Output: 鄐

Ruby:

char = "\u{9110}"
puts char  # Output: 鄐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009110";  /* Display: 鄐 */
}

HTML Decimal:

<p>HTML decimal: &#37136;</p>  <!-- Display: 鄐 -->

HTML Hexadecimal:

<p>HTML hex: &#x9110;</p>  <!-- Display: 鄐 -->

URL Encoding:

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

Encodings

MD5:

59b7c9a31671b5e735333f62afefda81

SHA1:

f8f3c4799cef0b3f8233eae7a4dd6869a087fe32

Base64:

6YSQ