Unicode Finder

"晇" U+6647(CJK UNIFIED IDEOGRAPH-6647)

U+6647
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6647

Programming

C
\u6647
JavaScript
\u6647
Java
\u6647
Json
\u6647
Python
\u6647
Perl
\x{6647}
PHP
\x{6647}
Ruby
\u{6647}
Rust
\u{6647}
Go
\u6647

Web

CSS
\006647
HtmlDecimal
晇
HtmlHexadecimal
晇
Url
%E6%99%87

Code

MD5
eb52c3dad3101d0ec98ccf5bf19ab352
Sha1
028a137548ddce0b2b990d5fd43833452cdd795d
Base64
5pmH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6647';
console.log(char);  // Output: 晇

Java:

char c = '\u6647';
System.out.println(c);  // Output: 晇

JSON:

{"text": "\u6647"}  // Value: 晇

Python:

char = '\u6647'
print(char)  # Output: 晇

Perl:

my $char = "\x{6647}";
print $char;  # Output: 晇

PHP:

$char = "\x{6647}";
echo $char;  // Output: 晇

Ruby:

char = "\u{6647}"
puts char  # Output: 晇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006647";  /* Display: 晇 */
}

HTML Decimal:

<p>HTML decimal: &#26183;</p>  <!-- Display: 晇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6647;</p>  <!-- Display: 晇 -->

URL Encoding:

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

Encodings

MD5:

eb52c3dad3101d0ec98ccf5bf19ab352

SHA1:

028a137548ddce0b2b990d5fd43833452cdd795d

Base64:

5pmH