Unicode Finder

"曈" U+66C8(CJK UNIFIED IDEOGRAPH-66C8)

U+66C8
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-66C8

Programming

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

Web

CSS
\0066C8
HtmlDecimal
曈
HtmlHexadecimal
曈
Url
%E6%9B%88

Code

MD5
9820190b4159bc48beb575b41fda2aec
Sha1
50936d64c05d9352a5022831e197e0e6b5e70c56
Base64
5puI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u66C8';
console.log(char);  // Output: 曈

Java:

char c = '\u66C8';
System.out.println(c);  // Output: 曈

JSON:

{"text": "\u66C8"}  // Value: 曈

Python:

char = '\u66C8'
print(char)  # Output: 曈

Perl:

my $char = "\x{66C8}";
print $char;  # Output: 曈

PHP:

$char = "\x{66C8}";
echo $char;  // Output: 曈

Ruby:

char = "\u{66C8}"
puts char  # Output: 曈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26312;</p>  <!-- Display: 曈 -->

HTML Hexadecimal:

<p>HTML hex: &#x66C8;</p>  <!-- Display: 曈 -->

URL Encoding:

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

Encodings

MD5:

9820190b4159bc48beb575b41fda2aec

SHA1:

50936d64c05d9352a5022831e197e0e6b5e70c56

Base64:

5puI