Unicode Finder

"鈆" U+9206(CJK UNIFIED IDEOGRAPH-9206)

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

Programming

C
\u9206
JavaScript
\u9206
Java
\u9206
Json
\u9206
Python
\u9206
Perl
\x{9206}
PHP
\x{9206}
Ruby
\u{9206}
Rust
\u{9206}
Go
\u9206

Web

CSS
\009206
HtmlDecimal
鈆
HtmlHexadecimal
鈆
Url
%E9%88%86

Code

MD5
c28339d633b12e7c5f5649898b63cf98
Sha1
c05afcb9d5a18760b98371de5e471c7d2e683120
Base64
6YiG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9206';
console.log(char);  // Output: 鈆

Java:

char c = '\u9206';
System.out.println(c);  // Output: 鈆

JSON:

{"text": "\u9206"}  // Value: 鈆

Python:

char = '\u9206'
print(char)  # Output: 鈆

Perl:

my $char = "\x{9206}";
print $char;  # Output: 鈆

PHP:

$char = "\x{9206}";
echo $char;  // Output: 鈆

Ruby:

char = "\u{9206}"
puts char  # Output: 鈆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009206";  /* Display: 鈆 */
}

HTML Decimal:

<p>HTML decimal: &#37382;</p>  <!-- Display: 鈆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9206;</p>  <!-- Display: 鈆 -->

URL Encoding:

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

Encodings

MD5:

c28339d633b12e7c5f5649898b63cf98

SHA1:

c05afcb9d5a18760b98371de5e471c7d2e683120

Base64:

6YiG