Unicode Finder

"鐨" U+9428(CJK UNIFIED IDEOGRAPH-9428)

U+9428
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9428

Programming

C
\u9428
JavaScript
\u9428
Java
\u9428
Json
\u9428
Python
\u9428
Perl
\x{9428}
PHP
\x{9428}
Ruby
\u{9428}
Rust
\u{9428}
Go
\u9428

Web

CSS
\009428
HtmlDecimal
鐨
HtmlHexadecimal
鐨
Url
%E9%90%A8

Code

MD5
4d17ddae6e103697a1f72ce92d1ca239
Sha1
8b9b0b949a6792d5c51ab8852bcd9ff05eee6738
Base64
6ZCo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9428';
console.log(char);  // Output: 鐨

Java:

char c = '\u9428';
System.out.println(c);  // Output: 鐨

JSON:

{"text": "\u9428"}  // Value: 鐨

Python:

char = '\u9428'
print(char)  # Output: 鐨

Perl:

my $char = "\x{9428}";
print $char;  # Output: 鐨

PHP:

$char = "\x{9428}";
echo $char;  // Output: 鐨

Ruby:

char = "\u{9428}"
puts char  # Output: 鐨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009428";  /* Display: 鐨 */
}

HTML Decimal:

<p>HTML decimal: &#37928;</p>  <!-- Display: 鐨 -->

HTML Hexadecimal:

<p>HTML hex: &#x9428;</p>  <!-- Display: 鐨 -->

URL Encoding:

// 鐨 URL encoding
https://unicodefinder.com/search.php?query=%E9%90%A8

Encodings

MD5:

4d17ddae6e103697a1f72ce92d1ca239

SHA1:

8b9b0b949a6792d5c51ab8852bcd9ff05eee6738

Base64:

6ZCo