Unicode Finder

"鬫" U+9B2B(CJK UNIFIED IDEOGRAPH-9B2B)

U+9B2B
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9B2B

Programming

C
\u9B2B
JavaScript
\u9B2B
Java
\u9B2B
Json
\u9B2B
Python
\u9B2B
Perl
\x{9B2B}
PHP
\x{9B2B}
Ruby
\u{9B2B}
Rust
\u{9B2B}
Go
\u9B2B

Web

CSS
\009B2B
HtmlDecimal
鬫
HtmlHexadecimal
鬫
Url
%E9%AC%AB

Code

MD5
fe140bc39018e2c9b5c6d2e031d7ce37
Sha1
b770ad1db57dfaf18d4cea60b0c98c7fe54a2de3
Base64
6ayr

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9B2B';
console.log(char);  // Output: 鬫

Java:

char c = '\u9B2B';
System.out.println(c);  // Output: 鬫

JSON:

{"text": "\u9B2B"}  // Value: 鬫

Python:

char = '\u9B2B'
print(char)  # Output: 鬫

Perl:

my $char = "\x{9B2B}";
print $char;  # Output: 鬫

PHP:

$char = "\x{9B2B}";
echo $char;  // Output: 鬫

Ruby:

char = "\u{9B2B}"
puts char  # Output: 鬫

Rust:

let c = '\u{9B2B}';
println!("{}", c);  // Output: 鬫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009B2B";  /* Display: 鬫 */
}

HTML Decimal:

<p>HTML decimal: &#39723;</p>  <!-- Display: 鬫 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B2B;</p>  <!-- Display: 鬫 -->

URL Encoding:

// 鬫 URL encoding
https://unicodefinder.com/search.php?query=%E9%AC%AB

Encodings

MD5:

fe140bc39018e2c9b5c6d2e031d7ce37

SHA1:

b770ad1db57dfaf18d4cea60b0c98c7fe54a2de3

Base64:

6ayr