Unicode Finder

"鐤" U+9424(CJK UNIFIED IDEOGRAPH-9424)

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

Programming

C
\u9424
JavaScript
\u9424
Java
\u9424
Json
\u9424
Python
\u9424
Perl
\x{9424}
PHP
\x{9424}
Ruby
\u{9424}
Rust
\u{9424}
Go
\u9424

Web

CSS
\009424
HtmlDecimal
鐤
HtmlHexadecimal
鐤
Url
%E9%90%A4

Code

MD5
1c1d16a482e72da36aef1ce519e3601c
Sha1
a152bd5960737174d63bf4d76657a25151921c13
Base64
6ZCk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9424';
console.log(char);  // Output: 鐤

Java:

char c = '\u9424';
System.out.println(c);  // Output: 鐤

JSON:

{"text": "\u9424"}  // Value: 鐤

Python:

char = '\u9424'
print(char)  # Output: 鐤

Perl:

my $char = "\x{9424}";
print $char;  # Output: 鐤

PHP:

$char = "\x{9424}";
echo $char;  // Output: 鐤

Ruby:

char = "\u{9424}"
puts char  # Output: 鐤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009424";  /* Display: 鐤 */
}

HTML Decimal:

<p>HTML decimal: &#37924;</p>  <!-- Display: 鐤 -->

HTML Hexadecimal:

<p>HTML hex: &#x9424;</p>  <!-- Display: 鐤 -->

URL Encoding:

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

Encodings

MD5:

1c1d16a482e72da36aef1ce519e3601c

SHA1:

a152bd5960737174d63bf4d76657a25151921c13

Base64:

6ZCk