Unicode Finder

"鐑" U+9411(CJK UNIFIED IDEOGRAPH-9411)

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

Programming

C
\u9411
JavaScript
\u9411
Java
\u9411
Json
\u9411
Python
\u9411
Perl
\x{9411}
PHP
\x{9411}
Ruby
\u{9411}
Rust
\u{9411}
Go
\u9411

Web

CSS
\009411
HtmlDecimal
鐑
HtmlHexadecimal
鐑
Url
%E9%90%91

Code

MD5
5f6c1eb478edc218f89493562c965e4e
Sha1
434fd61e037c81bd94e2ba446a25987011cf41cf
Base64
6ZCR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9411';
console.log(char);  // Output: 鐑

Java:

char c = '\u9411';
System.out.println(c);  // Output: 鐑

JSON:

{"text": "\u9411"}  // Value: 鐑

Python:

char = '\u9411'
print(char)  # Output: 鐑

Perl:

my $char = "\x{9411}";
print $char;  # Output: 鐑

PHP:

$char = "\x{9411}";
echo $char;  // Output: 鐑

Ruby:

char = "\u{9411}"
puts char  # Output: 鐑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009411";  /* Display: 鐑 */
}

HTML Decimal:

<p>HTML decimal: &#37905;</p>  <!-- Display: 鐑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9411;</p>  <!-- Display: 鐑 -->

URL Encoding:

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

Encodings

MD5:

5f6c1eb478edc218f89493562c965e4e

SHA1:

434fd61e037c81bd94e2ba446a25987011cf41cf

Base64:

6ZCR