Unicode Finder

"晨" U+6668(CJK UNIFIED IDEOGRAPH-6668)

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

Programming

C
\u6668
JavaScript
\u6668
Java
\u6668
Json
\u6668
Python
\u6668
Perl
\x{6668}
PHP
\x{6668}
Ruby
\u{6668}
Rust
\u{6668}
Go
\u6668

Web

CSS
\006668
HtmlDecimal
晨
HtmlHexadecimal
晨
Url
%E6%99%A8

Code

MD5
86a9547f3a24e8658c73182d43b1183e
Sha1
be2fde7f2d0c3c4fa315ed3ee006292db2126d22
Base64
5pmo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6668';
console.log(char);  // Output: 晨

Java:

char c = '\u6668';
System.out.println(c);  // Output: 晨

JSON:

{"text": "\u6668"}  // Value: 晨

Python:

char = '\u6668'
print(char)  # Output: 晨

Perl:

my $char = "\x{6668}";
print $char;  # Output: 晨

PHP:

$char = "\x{6668}";
echo $char;  // Output: 晨

Ruby:

char = "\u{6668}"
puts char  # Output: 晨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006668";  /* Display: 晨 */
}

HTML Decimal:

<p>HTML decimal: &#26216;</p>  <!-- Display: 晨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6668;</p>  <!-- Display: 晨 -->

URL Encoding:

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

Encodings

MD5:

86a9547f3a24e8658c73182d43b1183e

SHA1:

be2fde7f2d0c3c4fa315ed3ee006292db2126d22

Base64:

5pmo