Unicode Finder

"曬" U+66EC(CJK UNIFIED IDEOGRAPH-66EC)

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

Programming

C
\u66EC
JavaScript
\u66EC
Java
\u66EC
Json
\u66EC
Python
\u66EC
Perl
\x{66EC}
PHP
\x{66EC}
Ruby
\u{66EC}
Rust
\u{66EC}
Go
\u66EC

Web

CSS
\0066EC
HtmlDecimal
曬
HtmlHexadecimal
曬
Url
%E6%9B%AC

Code

MD5
ca3719f27494ce3cc9a4cb8bfab512ea
Sha1
e5be02501a1e5dc1df6f312c7bba2a61342cc5a9
Base64
5pus

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u66EC';
console.log(char);  // Output: 曬

Java:

char c = '\u66EC';
System.out.println(c);  // Output: 曬

JSON:

{"text": "\u66EC"}  // Value: 曬

Python:

char = '\u66EC'
print(char)  # Output: 曬

Perl:

my $char = "\x{66EC}";
print $char;  # Output: 曬

PHP:

$char = "\x{66EC}";
echo $char;  // Output: 曬

Ruby:

char = "\u{66EC}"
puts char  # Output: 曬

Rust:

let c = '\u{66EC}';
println!("{}", c);  // Output: 曬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0066EC";  /* Display: 曬 */
}

HTML Decimal:

<p>HTML decimal: &#26348;</p>  <!-- Display: 曬 -->

HTML Hexadecimal:

<p>HTML hex: &#x66EC;</p>  <!-- Display: 曬 -->

URL Encoding:

// 曬 URL encoding
https://unicodefinder.com/search.php?query=%E6%9B%AC

Encodings

MD5:

ca3719f27494ce3cc9a4cb8bfab512ea

SHA1:

e5be02501a1e5dc1df6f312c7bba2a61342cc5a9

Base64:

5pus