Unicode Finder

"鄝" U+911D(CJK UNIFIED IDEOGRAPH-911D)

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

Programming

C
\u911D
JavaScript
\u911D
Java
\u911D
Json
\u911D
Python
\u911D
Perl
\x{911D}
PHP
\x{911D}
Ruby
\u{911D}
Rust
\u{911D}
Go
\u911D

Web

CSS
\00911D
HtmlDecimal
鄝
HtmlHexadecimal
鄝
Url
%E9%84%9D

Code

MD5
d2c0269a58856c97880e52913fc41ff9
Sha1
4e801e82faad27930584c4c23d3e27cbfe6f4380
Base64
6YSd

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u911D';
console.log(char);  // Output: 鄝

Java:

char c = '\u911D';
System.out.println(c);  // Output: 鄝

JSON:

{"text": "\u911D"}  // Value: 鄝

Python:

char = '\u911D'
print(char)  # Output: 鄝

Perl:

my $char = "\x{911D}";
print $char;  # Output: 鄝

PHP:

$char = "\x{911D}";
echo $char;  // Output: 鄝

Ruby:

char = "\u{911D}"
puts char  # Output: 鄝

Rust:

let c = '\u{911D}';
println!("{}", c);  // Output: 鄝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00911D";  /* Display: 鄝 */
}

HTML Decimal:

<p>HTML decimal: &#37149;</p>  <!-- Display: 鄝 -->

HTML Hexadecimal:

<p>HTML hex: &#x911D;</p>  <!-- Display: 鄝 -->

URL Encoding:

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

Encodings

MD5:

d2c0269a58856c97880e52913fc41ff9

SHA1:

4e801e82faad27930584c4c23d3e27cbfe6f4380

Base64:

6YSd