Unicode Finder

"晀" U+6640(CJK UNIFIED IDEOGRAPH-6640)

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

Programming

C
\u6640
JavaScript
\u6640
Java
\u6640
Json
\u6640
Python
\u6640
Perl
\x{6640}
PHP
\x{6640}
Ruby
\u{6640}
Rust
\u{6640}
Go
\u6640

Web

CSS
\006640
HtmlDecimal
晀
HtmlHexadecimal
晀
Url
%E6%99%80

Code

MD5
76c1ef3085e6830d01477839625d2999
Sha1
be13d4368340035c825d960abfb8cc566f871ed4
Base64
5pmA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6640';
console.log(char);  // Output: 晀

Java:

char c = '\u6640';
System.out.println(c);  // Output: 晀

JSON:

{"text": "\u6640"}  // Value: 晀

Python:

char = '\u6640'
print(char)  # Output: 晀

Perl:

my $char = "\x{6640}";
print $char;  # Output: 晀

PHP:

$char = "\x{6640}";
echo $char;  // Output: 晀

Ruby:

char = "\u{6640}"
puts char  # Output: 晀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006640";  /* Display: 晀 */
}

HTML Decimal:

<p>HTML decimal: &#26176;</p>  <!-- Display: 晀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6640;</p>  <!-- Display: 晀 -->

URL Encoding:

// 晀 URL encoding
https://unicodefinder.com/search.php?query=%E6%99%80

Encodings

MD5:

76c1ef3085e6830d01477839625d2999

SHA1:

be13d4368340035c825d960abfb8cc566f871ed4

Base64:

5pmA