Unicode Finder

"鈓" U+9213(CJK UNIFIED IDEOGRAPH-9213)

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

Programming

C
\u9213
JavaScript
\u9213
Java
\u9213
Json
\u9213
Python
\u9213
Perl
\x{9213}
PHP
\x{9213}
Ruby
\u{9213}
Rust
\u{9213}
Go
\u9213

Web

CSS
\009213
HtmlDecimal
鈓
HtmlHexadecimal
鈓
Url
%E9%88%93

Code

MD5
f079bb519412e32c8f996c96094bf4ce
Sha1
9c2ffb6c23e1628380eb000524b626485920bddb
Base64
6YiT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9213';
console.log(char);  // Output: 鈓

Java:

char c = '\u9213';
System.out.println(c);  // Output: 鈓

JSON:

{"text": "\u9213"}  // Value: 鈓

Python:

char = '\u9213'
print(char)  # Output: 鈓

Perl:

my $char = "\x{9213}";
print $char;  # Output: 鈓

PHP:

$char = "\x{9213}";
echo $char;  // Output: 鈓

Ruby:

char = "\u{9213}"
puts char  # Output: 鈓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009213";  /* Display: 鈓 */
}

HTML Decimal:

<p>HTML decimal: &#37395;</p>  <!-- Display: 鈓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9213;</p>  <!-- Display: 鈓 -->

URL Encoding:

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

Encodings

MD5:

f079bb519412e32c8f996c96094bf4ce

SHA1:

9c2ffb6c23e1628380eb000524b626485920bddb

Base64:

6YiT