Unicode Finder

"鮢" U+9BA2(CJK UNIFIED IDEOGRAPH-9BA2)

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

Programming

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

Web

CSS
\009BA2
HtmlDecimal
鮢
HtmlHexadecimal
鮢
Url
%E9%AE%A2

Code

MD5
fe4071bdea54e53c68ae3e146c5dbe53
Sha1
00d407c65b3e0b348e5f322c5c2c584a8d772f1d
Base64
6a6i

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9BA2';
console.log(char);  // Output: 鮢

Java:

char c = '\u9BA2';
System.out.println(c);  // Output: 鮢

JSON:

{"text": "\u9BA2"}  // Value: 鮢

Python:

char = '\u9BA2'
print(char)  # Output: 鮢

Perl:

my $char = "\x{9BA2}";
print $char;  # Output: 鮢

PHP:

$char = "\x{9BA2}";
echo $char;  // Output: 鮢

Ruby:

char = "\u{9BA2}"
puts char  # Output: 鮢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39842;</p>  <!-- Display: 鮢 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BA2;</p>  <!-- Display: 鮢 -->

URL Encoding:

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

Encodings

MD5:

fe4071bdea54e53c68ae3e146c5dbe53

SHA1:

00d407c65b3e0b348e5f322c5c2c584a8d772f1d

Base64:

6a6i