Unicode Finder

"曦" U+66E6(CJK UNIFIED IDEOGRAPH-66E6)

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

Programming

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

Web

CSS
\0066E6
HtmlDecimal
曦
HtmlHexadecimal
曦
Url
%E6%9B%A6

Code

MD5
e55714b6a93183559c5920d81240eb6c
Sha1
42dd9f3e8553147e78b553309cb43ccb4ee2dced
Base64
5pum

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u66E6';
console.log(char);  // Output: 曦

Java:

char c = '\u66E6';
System.out.println(c);  // Output: 曦

JSON:

{"text": "\u66E6"}  // Value: 曦

Python:

char = '\u66E6'
print(char)  # Output: 曦

Perl:

my $char = "\x{66E6}";
print $char;  # Output: 曦

PHP:

$char = "\x{66E6}";
echo $char;  // Output: 曦

Ruby:

char = "\u{66E6}"
puts char  # Output: 曦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26342;</p>  <!-- Display: 曦 -->

HTML Hexadecimal:

<p>HTML hex: &#x66E6;</p>  <!-- Display: 曦 -->

URL Encoding:

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

Encodings

MD5:

e55714b6a93183559c5920d81240eb6c

SHA1:

42dd9f3e8553147e78b553309cb43ccb4ee2dced

Base64:

5pum