Unicode Finder

"鮚" U+9B9A(CJK UNIFIED IDEOGRAPH-9B9A)

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

Programming

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

Web

CSS
\009B9A
HtmlDecimal
鮚
HtmlHexadecimal
鮚
Url
%E9%AE%9A

Code

MD5
3e4786708dbe52ade55da6e8e01b5783
Sha1
3255ff0ffff3271991a3c4bd82f3d9707118d46a
Base64
6a6a

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9B9A';
console.log(char);  // Output: 鮚

Java:

char c = '\u9B9A';
System.out.println(c);  // Output: 鮚

JSON:

{"text": "\u9B9A"}  // Value: 鮚

Python:

char = '\u9B9A'
print(char)  # Output: 鮚

Perl:

my $char = "\x{9B9A}";
print $char;  # Output: 鮚

PHP:

$char = "\x{9B9A}";
echo $char;  // Output: 鮚

Ruby:

char = "\u{9B9A}"
puts char  # Output: 鮚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39834;</p>  <!-- Display: 鮚 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B9A;</p>  <!-- Display: 鮚 -->

URL Encoding:

// 鮚 URL encoding
https://unicodefinder.com/search.php?query=%E9%AE%9A

Encodings

MD5:

3e4786708dbe52ade55da6e8e01b5783

SHA1:

3255ff0ffff3271991a3c4bd82f3d9707118d46a

Base64:

6a6a