Unicode Finder

"鈰" U+9230(CJK UNIFIED IDEOGRAPH-9230)

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

Programming

C
\u9230
JavaScript
\u9230
Java
\u9230
Json
\u9230
Python
\u9230
Perl
\x{9230}
PHP
\x{9230}
Ruby
\u{9230}
Rust
\u{9230}
Go
\u9230

Web

CSS
\009230
HtmlDecimal
鈰
HtmlHexadecimal
鈰
Url
%E9%88%B0

Code

MD5
05915d2a26f007dd7e5e023754dfae3d
Sha1
a1b7115e6002b2db946b64831074d562b87d849c
Base64
6Yiw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9230';
console.log(char);  // Output: 鈰

Java:

char c = '\u9230';
System.out.println(c);  // Output: 鈰

JSON:

{"text": "\u9230"}  // Value: 鈰

Python:

char = '\u9230'
print(char)  # Output: 鈰

Perl:

my $char = "\x{9230}";
print $char;  # Output: 鈰

PHP:

$char = "\x{9230}";
echo $char;  // Output: 鈰

Ruby:

char = "\u{9230}"
puts char  # Output: 鈰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009230";  /* Display: 鈰 */
}

HTML Decimal:

<p>HTML decimal: &#37424;</p>  <!-- Display: 鈰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9230;</p>  <!-- Display: 鈰 -->

URL Encoding:

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

Encodings

MD5:

05915d2a26f007dd7e5e023754dfae3d

SHA1:

a1b7115e6002b2db946b64831074d562b87d849c

Base64:

6Yiw