Unicode Finder

"曰" U+66F0(CJK UNIFIED IDEOGRAPH-66F0)

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

Programming

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

Web

CSS
\0066F0
HtmlDecimal
曰
HtmlHexadecimal
曰
Url
%E6%9B%B0

Code

MD5
1eebf3b968228952a0e645e383026141
Sha1
23bd46dc997016749715431695fc41305ff70675
Base64
5puw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u66F0';
console.log(char);  // Output: 曰

Java:

char c = '\u66F0';
System.out.println(c);  // Output: 曰

JSON:

{"text": "\u66F0"}  // Value: 曰

Python:

char = '\u66F0'
print(char)  # Output: 曰

Perl:

my $char = "\x{66F0}";
print $char;  # Output: 曰

PHP:

$char = "\x{66F0}";
echo $char;  // Output: 曰

Ruby:

char = "\u{66F0}"
puts char  # Output: 曰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26352;</p>  <!-- Display: 曰 -->

HTML Hexadecimal:

<p>HTML hex: &#x66F0;</p>  <!-- Display: 曰 -->

URL Encoding:

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

Encodings

MD5:

1eebf3b968228952a0e645e383026141

SHA1:

23bd46dc997016749715431695fc41305ff70675

Base64:

5puw