Unicode Finder

"鐁" U+9401(CJK UNIFIED IDEOGRAPH-9401)

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

Programming

C
\u9401
JavaScript
\u9401
Java
\u9401
Json
\u9401
Python
\u9401
Perl
\x{9401}
PHP
\x{9401}
Ruby
\u{9401}
Rust
\u{9401}
Go
\u9401

Web

CSS
\009401
HtmlDecimal
鐁
HtmlHexadecimal
鐁
Url
%E9%90%81

Code

MD5
496ad02b56e1de1a5fb0631b3e9c39fc
Sha1
7731975456007d284064aca7efbb3451b3da8501
Base64
6ZCB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9401';
console.log(char);  // Output: 鐁

Java:

char c = '\u9401';
System.out.println(c);  // Output: 鐁

JSON:

{"text": "\u9401"}  // Value: 鐁

Python:

char = '\u9401'
print(char)  # Output: 鐁

Perl:

my $char = "\x{9401}";
print $char;  # Output: 鐁

PHP:

$char = "\x{9401}";
echo $char;  // Output: 鐁

Ruby:

char = "\u{9401}"
puts char  # Output: 鐁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009401";  /* Display: 鐁 */
}

HTML Decimal:

<p>HTML decimal: &#37889;</p>  <!-- Display: 鐁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9401;</p>  <!-- Display: 鐁 -->

URL Encoding:

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

Encodings

MD5:

496ad02b56e1de1a5fb0631b3e9c39fc

SHA1:

7731975456007d284064aca7efbb3451b3da8501

Base64:

6ZCB