Unicode Finder

"錰" U+9330(CJK UNIFIED IDEOGRAPH-9330)

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

Programming

C
\u9330
JavaScript
\u9330
Java
\u9330
Json
\u9330
Python
\u9330
Perl
\x{9330}
PHP
\x{9330}
Ruby
\u{9330}
Rust
\u{9330}
Go
\u9330

Web

CSS
\009330
HtmlDecimal
錰
HtmlHexadecimal
錰
Url
%E9%8C%B0

Code

MD5
77915ab5348866b59ae9d51830cf1563
Sha1
fc24923f34da286523fd756d1c4bd411078449e2
Base64
6Yyw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9330';
console.log(char);  // Output: 錰

Java:

char c = '\u9330';
System.out.println(c);  // Output: 錰

JSON:

{"text": "\u9330"}  // Value: 錰

Python:

char = '\u9330'
print(char)  # Output: 錰

Perl:

my $char = "\x{9330}";
print $char;  # Output: 錰

PHP:

$char = "\x{9330}";
echo $char;  // Output: 錰

Ruby:

char = "\u{9330}"
puts char  # Output: 錰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009330";  /* Display: 錰 */
}

HTML Decimal:

<p>HTML decimal: &#37680;</p>  <!-- Display: 錰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9330;</p>  <!-- Display: 錰 -->

URL Encoding:

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

Encodings

MD5:

77915ab5348866b59ae9d51830cf1563

SHA1:

fc24923f34da286523fd756d1c4bd411078449e2

Base64:

6Yyw