Unicode Finder

"曏" U+66CF(CJK UNIFIED IDEOGRAPH-66CF)

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

Programming

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

Web

CSS
\0066CF
HtmlDecimal
曏
HtmlHexadecimal
曏
Url
%E6%9B%8F

Code

MD5
2bbbf69e695b4861d46bd665c55abb66
Sha1
031bae7b763093735d28527fe36b3c124dc6c1a0
Base64
5puP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u66CF';
console.log(char);  // Output: 曏

Java:

char c = '\u66CF';
System.out.println(c);  // Output: 曏

JSON:

{"text": "\u66CF"}  // Value: 曏

Python:

char = '\u66CF'
print(char)  # Output: 曏

Perl:

my $char = "\x{66CF}";
print $char;  # Output: 曏

PHP:

$char = "\x{66CF}";
echo $char;  // Output: 曏

Ruby:

char = "\u{66CF}"
puts char  # Output: 曏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26319;</p>  <!-- Display: 曏 -->

HTML Hexadecimal:

<p>HTML hex: &#x66CF;</p>  <!-- Display: 曏 -->

URL Encoding:

// 曏 URL encoding
https://unicodefinder.com/search.php?query=%E6%9B%8F

Encodings

MD5:

2bbbf69e695b4861d46bd665c55abb66

SHA1:

031bae7b763093735d28527fe36b3c124dc6c1a0

Base64:

5puP