Unicode Finder

"鑀" U+9440(CJK UNIFIED IDEOGRAPH-9440)

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

Programming

C
\u9440
JavaScript
\u9440
Java
\u9440
Json
\u9440
Python
\u9440
Perl
\x{9440}
PHP
\x{9440}
Ruby
\u{9440}
Rust
\u{9440}
Go
\u9440

Web

CSS
\009440
HtmlDecimal
鑀
HtmlHexadecimal
鑀
Url
%E9%91%80

Code

MD5
ea7dcc95b1ae9f7f98c543b5ac1f60f7
Sha1
458b5d656614a57aa0c17685ebb06c646cea0657
Base64
6ZGA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9440';
console.log(char);  // Output: 鑀

Java:

char c = '\u9440';
System.out.println(c);  // Output: 鑀

JSON:

{"text": "\u9440"}  // Value: 鑀

Python:

char = '\u9440'
print(char)  # Output: 鑀

Perl:

my $char = "\x{9440}";
print $char;  # Output: 鑀

PHP:

$char = "\x{9440}";
echo $char;  // Output: 鑀

Ruby:

char = "\u{9440}"
puts char  # Output: 鑀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009440";  /* Display: 鑀 */
}

HTML Decimal:

<p>HTML decimal: &#37952;</p>  <!-- Display: 鑀 -->

HTML Hexadecimal:

<p>HTML hex: &#x9440;</p>  <!-- Display: 鑀 -->

URL Encoding:

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

Encodings

MD5:

ea7dcc95b1ae9f7f98c543b5ac1f60f7

SHA1:

458b5d656614a57aa0c17685ebb06c646cea0657

Base64:

6ZGA