Unicode Finder

"錂" U+9302(CJK UNIFIED IDEOGRAPH-9302)

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

Programming

C
\u9302
JavaScript
\u9302
Java
\u9302
Json
\u9302
Python
\u9302
Perl
\x{9302}
PHP
\x{9302}
Ruby
\u{9302}
Rust
\u{9302}
Go
\u9302

Web

CSS
\009302
HtmlDecimal
錂
HtmlHexadecimal
錂
Url
%E9%8C%82

Code

MD5
56bc161090618d3f70d6814748369db0
Sha1
df6e234d78b0162b0f81f7f4d99711d7a14c082f
Base64
6YyC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9302';
console.log(char);  // Output: 錂

Java:

char c = '\u9302';
System.out.println(c);  // Output: 錂

JSON:

{"text": "\u9302"}  // Value: 錂

Python:

char = '\u9302'
print(char)  # Output: 錂

Perl:

my $char = "\x{9302}";
print $char;  # Output: 錂

PHP:

$char = "\x{9302}";
echo $char;  // Output: 錂

Ruby:

char = "\u{9302}"
puts char  # Output: 錂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009302";  /* Display: 錂 */
}

HTML Decimal:

<p>HTML decimal: &#37634;</p>  <!-- Display: 錂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9302;</p>  <!-- Display: 錂 -->

URL Encoding:

// 錂 URL encoding
https://unicodefinder.com/search.php?query=%E9%8C%82

Encodings

MD5:

56bc161090618d3f70d6814748369db0

SHA1:

df6e234d78b0162b0f81f7f4d99711d7a14c082f

Base64:

6YyC