Unicode Finder

"錀" U+9300(CJK UNIFIED IDEOGRAPH-9300)

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

Programming

C
\u9300
JavaScript
\u9300
Java
\u9300
Json
\u9300
Python
\u9300
Perl
\x{9300}
PHP
\x{9300}
Ruby
\u{9300}
Rust
\u{9300}
Go
\u9300

Web

CSS
\009300
HtmlDecimal
錀
HtmlHexadecimal
錀
Url
%E9%8C%80

Code

MD5
f671ffc758e6dbc920e8a8d89a23c9c5
Sha1
b62b9c5bd641535e627aca88cc6e58728560708b
Base64
6YyA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9300';
console.log(char);  // Output: 錀

Java:

char c = '\u9300';
System.out.println(c);  // Output: 錀

JSON:

{"text": "\u9300"}  // Value: 錀

Python:

char = '\u9300'
print(char)  # Output: 錀

Perl:

my $char = "\x{9300}";
print $char;  # Output: 錀

PHP:

$char = "\x{9300}";
echo $char;  // Output: 錀

Ruby:

char = "\u{9300}"
puts char  # Output: 錀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009300";  /* Display: 錀 */
}

HTML Decimal:

<p>HTML decimal: &#37632;</p>  <!-- Display: 錀 -->

HTML Hexadecimal:

<p>HTML hex: &#x9300;</p>  <!-- Display: 錀 -->

URL Encoding:

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

Encodings

MD5:

f671ffc758e6dbc920e8a8d89a23c9c5

SHA1:

b62b9c5bd641535e627aca88cc6e58728560708b

Base64:

6YyA