Unicode Finder

"鄛" U+911B(CJK UNIFIED IDEOGRAPH-911B)

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

Programming

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

Web

CSS
\00911B
HtmlDecimal
鄛
HtmlHexadecimal
鄛
Url
%E9%84%9B

Code

MD5
b32444aeb77924c48e99f21c8262f027
Sha1
452351e619bdc58877530bb596b685cba7cd41d8
Base64
6YSb

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u911B';
console.log(char);  // Output: 鄛

Java:

char c = '\u911B';
System.out.println(c);  // Output: 鄛

JSON:

{"text": "\u911B"}  // Value: 鄛

Python:

char = '\u911B'
print(char)  # Output: 鄛

Perl:

my $char = "\x{911B}";
print $char;  # Output: 鄛

PHP:

$char = "\x{911B}";
echo $char;  // Output: 鄛

Ruby:

char = "\u{911B}"
puts char  # Output: 鄛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37147;</p>  <!-- Display: 鄛 -->

HTML Hexadecimal:

<p>HTML hex: &#x911B;</p>  <!-- Display: 鄛 -->

URL Encoding:

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

Encodings

MD5:

b32444aeb77924c48e99f21c8262f027

SHA1:

452351e619bdc58877530bb596b685cba7cd41d8

Base64:

6YSb