Unicode Finder

"鼺" U+9F3A(CJK UNIFIED IDEOGRAPH-9F3A)

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

Programming

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

Web

CSS
\009F3A
HtmlDecimal
鼺
HtmlHexadecimal
鼺
Url
%E9%BC%BA

Code

MD5
860060d7d8c921fe6afd7d84027db0cb
Sha1
c890f43790317d12a799ccc6dfd32369be53e650
Base64
6by6

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9F3A';
console.log(char);  // Output: 鼺

Java:

char c = '\u9F3A';
System.out.println(c);  // Output: 鼺

JSON:

{"text": "\u9F3A"}  // Value: 鼺

Python:

char = '\u9F3A'
print(char)  # Output: 鼺

Perl:

my $char = "\x{9F3A}";
print $char;  # Output: 鼺

PHP:

$char = "\x{9F3A}";
echo $char;  // Output: 鼺

Ruby:

char = "\u{9F3A}"
puts char  # Output: 鼺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40762;</p>  <!-- Display: 鼺 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F3A;</p>  <!-- Display: 鼺 -->

URL Encoding:

// 鼺 URL encoding
https://unicodefinder.com/search.php?query=%E9%BC%BA

Encodings

MD5:

860060d7d8c921fe6afd7d84027db0cb

SHA1:

c890f43790317d12a799ccc6dfd32369be53e650

Base64:

6by6