Unicode Finder

"鮲" U+9BB2(CJK UNIFIED IDEOGRAPH-9BB2)

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

Programming

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

Web

CSS
\009BB2
HtmlDecimal
鮲
HtmlHexadecimal
鮲
Url
%E9%AE%B2

Code

MD5
082e26830b7e55e71ba49f1ad657bb48
Sha1
016f02fd67b74230b9334d6d48cefe2b49a18d4b
Base64
6a6y

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9BB2';
console.log(char);  // Output: 鮲

Java:

char c = '\u9BB2';
System.out.println(c);  // Output: 鮲

JSON:

{"text": "\u9BB2"}  // Value: 鮲

Python:

char = '\u9BB2'
print(char)  # Output: 鮲

Perl:

my $char = "\x{9BB2}";
print $char;  # Output: 鮲

PHP:

$char = "\x{9BB2}";
echo $char;  // Output: 鮲

Ruby:

char = "\u{9BB2}"
puts char  # Output: 鮲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39858;</p>  <!-- Display: 鮲 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BB2;</p>  <!-- Display: 鮲 -->

URL Encoding:

// 鮲 URL encoding
https://unicodefinder.com/search.php?query=%E9%AE%B2

Encodings

MD5:

082e26830b7e55e71ba49f1ad657bb48

SHA1:

016f02fd67b74230b9334d6d48cefe2b49a18d4b

Base64:

6a6y