Unicode Finder

"晘" U+6658(CJK UNIFIED IDEOGRAPH-6658)

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

Programming

C
\u6658
JavaScript
\u6658
Java
\u6658
Json
\u6658
Python
\u6658
Perl
\x{6658}
PHP
\x{6658}
Ruby
\u{6658}
Rust
\u{6658}
Go
\u6658

Web

CSS
\006658
HtmlDecimal
晘
HtmlHexadecimal
晘
Url
%E6%99%98

Code

MD5
ece904ea58d5270c57cea8b29c486190
Sha1
dbb0cb95ec8fa87e82a34141b75957d6b33cc369
Base64
5pmY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6658';
console.log(char);  // Output: 晘

Java:

char c = '\u6658';
System.out.println(c);  // Output: 晘

JSON:

{"text": "\u6658"}  // Value: 晘

Python:

char = '\u6658'
print(char)  # Output: 晘

Perl:

my $char = "\x{6658}";
print $char;  # Output: 晘

PHP:

$char = "\x{6658}";
echo $char;  // Output: 晘

Ruby:

char = "\u{6658}"
puts char  # Output: 晘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006658";  /* Display: 晘 */
}

HTML Decimal:

<p>HTML decimal: &#26200;</p>  <!-- Display: 晘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6658;</p>  <!-- Display: 晘 -->

URL Encoding:

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

Encodings

MD5:

ece904ea58d5270c57cea8b29c486190

SHA1:

dbb0cb95ec8fa87e82a34141b75957d6b33cc369

Base64:

5pmY