Unicode Finder

"曔" U+66D4(CJK UNIFIED IDEOGRAPH-66D4)

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

Programming

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

Web

CSS
\0066D4
HtmlDecimal
曔
HtmlHexadecimal
曔
Url
%E6%9B%94

Code

MD5
7028cd8779a34ef49f3a7bb772086542
Sha1
9117a15d70e262fb96ea9ee43340793cdf927bde
Base64
5puU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u66D4';
console.log(char);  // Output: 曔

Java:

char c = '\u66D4';
System.out.println(c);  // Output: 曔

JSON:

{"text": "\u66D4"}  // Value: 曔

Python:

char = '\u66D4'
print(char)  # Output: 曔

Perl:

my $char = "\x{66D4}";
print $char;  # Output: 曔

PHP:

$char = "\x{66D4}";
echo $char;  // Output: 曔

Ruby:

char = "\u{66D4}"
puts char  # Output: 曔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26324;</p>  <!-- Display: 曔 -->

HTML Hexadecimal:

<p>HTML hex: &#x66D4;</p>  <!-- Display: 曔 -->

URL Encoding:

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

Encodings

MD5:

7028cd8779a34ef49f3a7bb772086542

SHA1:

9117a15d70e262fb96ea9ee43340793cdf927bde

Base64:

5puU