Unicode Finder

"晔" U+6654(CJK UNIFIED IDEOGRAPH-6654)

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

Programming

C
\u6654
JavaScript
\u6654
Java
\u6654
Json
\u6654
Python
\u6654
Perl
\x{6654}
PHP
\x{6654}
Ruby
\u{6654}
Rust
\u{6654}
Go
\u6654

Web

CSS
\006654
HtmlDecimal
晔
HtmlHexadecimal
晔
Url
%E6%99%94

Code

MD5
17128d399b050cc063a5bb8744ba2be6
Sha1
67be6706832ca1db3b8b90bfecf0c952afd42cdf
Base64
5pmU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6654';
console.log(char);  // Output: 晔

Java:

char c = '\u6654';
System.out.println(c);  // Output: 晔

JSON:

{"text": "\u6654"}  // Value: 晔

Python:

char = '\u6654'
print(char)  # Output: 晔

Perl:

my $char = "\x{6654}";
print $char;  # Output: 晔

PHP:

$char = "\x{6654}";
echo $char;  // Output: 晔

Ruby:

char = "\u{6654}"
puts char  # Output: 晔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006654";  /* Display: 晔 */
}

HTML Decimal:

<p>HTML decimal: &#26196;</p>  <!-- Display: 晔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6654;</p>  <!-- Display: 晔 -->

URL Encoding:

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

Encodings

MD5:

17128d399b050cc063a5bb8744ba2be6

SHA1:

67be6706832ca1db3b8b90bfecf0c952afd42cdf

Base64:

5pmU