Unicode Finder

"晆" U+6646(CJK UNIFIED IDEOGRAPH-6646)

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

Programming

C
\u6646
JavaScript
\u6646
Java
\u6646
Json
\u6646
Python
\u6646
Perl
\x{6646}
PHP
\x{6646}
Ruby
\u{6646}
Rust
\u{6646}
Go
\u6646

Web

CSS
\006646
HtmlDecimal
晆
HtmlHexadecimal
晆
Url
%E6%99%86

Code

MD5
02352b6429ca348eb81b8357b9435aa2
Sha1
e4243d41f03281387ec699136fc9040a6c1c674f
Base64
5pmG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6646';
console.log(char);  // Output: 晆

Java:

char c = '\u6646';
System.out.println(c);  // Output: 晆

JSON:

{"text": "\u6646"}  // Value: 晆

Python:

char = '\u6646'
print(char)  # Output: 晆

Perl:

my $char = "\x{6646}";
print $char;  # Output: 晆

PHP:

$char = "\x{6646}";
echo $char;  // Output: 晆

Ruby:

char = "\u{6646}"
puts char  # Output: 晆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006646";  /* Display: 晆 */
}

HTML Decimal:

<p>HTML decimal: &#26182;</p>  <!-- Display: 晆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6646;</p>  <!-- Display: 晆 -->

URL Encoding:

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

Encodings

MD5:

02352b6429ca348eb81b8357b9435aa2

SHA1:

e4243d41f03281387ec699136fc9040a6c1c674f

Base64:

5pmG