Unicode Finder

"鈘" U+9218(CJK UNIFIED IDEOGRAPH-9218)

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

Programming

C
\u9218
JavaScript
\u9218
Java
\u9218
Json
\u9218
Python
\u9218
Perl
\x{9218}
PHP
\x{9218}
Ruby
\u{9218}
Rust
\u{9218}
Go
\u9218

Web

CSS
\009218
HtmlDecimal
鈘
HtmlHexadecimal
鈘
Url
%E9%88%98

Code

MD5
6c1376e3ea744e6e2bdaa67b8a434ea9
Sha1
28da6b77ec71f3212df285f90fbee753151e6f4b
Base64
6YiY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9218';
console.log(char);  // Output: 鈘

Java:

char c = '\u9218';
System.out.println(c);  // Output: 鈘

JSON:

{"text": "\u9218"}  // Value: 鈘

Python:

char = '\u9218'
print(char)  # Output: 鈘

Perl:

my $char = "\x{9218}";
print $char;  # Output: 鈘

PHP:

$char = "\x{9218}";
echo $char;  // Output: 鈘

Ruby:

char = "\u{9218}"
puts char  # Output: 鈘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009218";  /* Display: 鈘 */
}

HTML Decimal:

<p>HTML decimal: &#37400;</p>  <!-- Display: 鈘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9218;</p>  <!-- Display: 鈘 -->

URL Encoding:

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

Encodings

MD5:

6c1376e3ea744e6e2bdaa67b8a434ea9

SHA1:

28da6b77ec71f3212df285f90fbee753151e6f4b

Base64:

6YiY