Unicode Finder

"鐙" U+9419(CJK UNIFIED IDEOGRAPH-9419)

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

Programming

C
\u9419
JavaScript
\u9419
Java
\u9419
Json
\u9419
Python
\u9419
Perl
\x{9419}
PHP
\x{9419}
Ruby
\u{9419}
Rust
\u{9419}
Go
\u9419

Web

CSS
\009419
HtmlDecimal
鐙
HtmlHexadecimal
鐙
Url
%E9%90%99

Code

MD5
b72bc14bc58e4140ec43e7b11af2e237
Sha1
c035b153d286ea5b1e779d3d97c162d7300764d8
Base64
6ZCZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9419';
console.log(char);  // Output: 鐙

Java:

char c = '\u9419';
System.out.println(c);  // Output: 鐙

JSON:

{"text": "\u9419"}  // Value: 鐙

Python:

char = '\u9419'
print(char)  # Output: 鐙

Perl:

my $char = "\x{9419}";
print $char;  # Output: 鐙

PHP:

$char = "\x{9419}";
echo $char;  // Output: 鐙

Ruby:

char = "\u{9419}"
puts char  # Output: 鐙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009419";  /* Display: 鐙 */
}

HTML Decimal:

<p>HTML decimal: &#37913;</p>  <!-- Display: 鐙 -->

HTML Hexadecimal:

<p>HTML hex: &#x9419;</p>  <!-- Display: 鐙 -->

URL Encoding:

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

Encodings

MD5:

b72bc14bc58e4140ec43e7b11af2e237

SHA1:

c035b153d286ea5b1e779d3d97c162d7300764d8

Base64:

6ZCZ