Unicode Finder

"鈧" U+9227(CJK UNIFIED IDEOGRAPH-9227)

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

Programming

C
\u9227
JavaScript
\u9227
Java
\u9227
Json
\u9227
Python
\u9227
Perl
\x{9227}
PHP
\x{9227}
Ruby
\u{9227}
Rust
\u{9227}
Go
\u9227

Web

CSS
\009227
HtmlDecimal
鈧
HtmlHexadecimal
鈧
Url
%E9%88%A7

Code

MD5
b93125784db935e8524877d7fc11c548
Sha1
89cdb8a0aac3b85589394a94f3b6247d672a34e5
Base64
6Yin

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9227';
console.log(char);  // Output: 鈧

Java:

char c = '\u9227';
System.out.println(c);  // Output: 鈧

JSON:

{"text": "\u9227"}  // Value: 鈧

Python:

char = '\u9227'
print(char)  # Output: 鈧

Perl:

my $char = "\x{9227}";
print $char;  # Output: 鈧

PHP:

$char = "\x{9227}";
echo $char;  // Output: 鈧

Ruby:

char = "\u{9227}"
puts char  # Output: 鈧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009227";  /* Display: 鈧 */
}

HTML Decimal:

<p>HTML decimal: &#37415;</p>  <!-- Display: 鈧 -->

HTML Hexadecimal:

<p>HTML hex: &#x9227;</p>  <!-- Display: 鈧 -->

URL Encoding:

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

Encodings

MD5:

b93125784db935e8524877d7fc11c548

SHA1:

89cdb8a0aac3b85589394a94f3b6247d672a34e5

Base64:

6Yin