Unicode Finder

"鼂" U+9F02(CJK UNIFIED IDEOGRAPH-9F02)

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

Programming

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

Web

CSS
\009F02
HtmlDecimal
鼂
HtmlHexadecimal
鼂
Url
%E9%BC%82

Code

MD5
a5679251793affad199d87d41a0eba9d
Sha1
89d48dfc0bb6a903ee6c7702388b1781130bd564
Base64
6byC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9F02';
console.log(char);  // Output: 鼂

Java:

char c = '\u9F02';
System.out.println(c);  // Output: 鼂

JSON:

{"text": "\u9F02"}  // Value: 鼂

Python:

char = '\u9F02'
print(char)  # Output: 鼂

Perl:

my $char = "\x{9F02}";
print $char;  # Output: 鼂

PHP:

$char = "\x{9F02}";
echo $char;  // Output: 鼂

Ruby:

char = "\u{9F02}"
puts char  # Output: 鼂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40706;</p>  <!-- Display: 鼂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F02;</p>  <!-- Display: 鼂 -->

URL Encoding:

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

Encodings

MD5:

a5679251793affad199d87d41a0eba9d

SHA1:

89d48dfc0bb6a903ee6c7702388b1781130bd564

Base64:

6byC