Unicode Finder

"鈂" U+9202(CJK UNIFIED IDEOGRAPH-9202)

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

Programming

C
\u9202
JavaScript
\u9202
Java
\u9202
Json
\u9202
Python
\u9202
Perl
\x{9202}
PHP
\x{9202}
Ruby
\u{9202}
Rust
\u{9202}
Go
\u9202

Web

CSS
\009202
HtmlDecimal
鈂
HtmlHexadecimal
鈂
Url
%E9%88%82

Code

MD5
66e0e60dc56404d3b214df9bd06e9d1a
Sha1
3fb8cccd9d8a79c4bd3112aea2791dc8a21510b5
Base64
6YiC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9202';
console.log(char);  // Output: 鈂

Java:

char c = '\u9202';
System.out.println(c);  // Output: 鈂

JSON:

{"text": "\u9202"}  // Value: 鈂

Python:

char = '\u9202'
print(char)  # Output: 鈂

Perl:

my $char = "\x{9202}";
print $char;  # Output: 鈂

PHP:

$char = "\x{9202}";
echo $char;  // Output: 鈂

Ruby:

char = "\u{9202}"
puts char  # Output: 鈂

Rust:

let c = '\u{9202}';
println!("{}", c);  // Output: 鈂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009202";  /* Display: 鈂 */
}

HTML Decimal:

<p>HTML decimal: &#37378;</p>  <!-- Display: 鈂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9202;</p>  <!-- Display: 鈂 -->

URL Encoding:

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

Encodings

MD5:

66e0e60dc56404d3b214df9bd06e9d1a

SHA1:

3fb8cccd9d8a79c4bd3112aea2791dc8a21510b5

Base64:

6YiC