Unicode Finder

"曞" U+66DE(CJK UNIFIED IDEOGRAPH-66DE)

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

Programming

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

Web

CSS
\0066DE
HtmlDecimal
曞
HtmlHexadecimal
曞
Url
%E6%9B%9E

Code

MD5
f60031ade6ff559d21f9f0efcb975379
Sha1
894418b8972aaf386dfb34e7e7792dfb8569c1da
Base64
5pue

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u66DE';
console.log(char);  // Output: 曞

Java:

char c = '\u66DE';
System.out.println(c);  // Output: 曞

JSON:

{"text": "\u66DE"}  // Value: 曞

Python:

char = '\u66DE'
print(char)  # Output: 曞

Perl:

my $char = "\x{66DE}";
print $char;  # Output: 曞

PHP:

$char = "\x{66DE}";
echo $char;  // Output: 曞

Ruby:

char = "\u{66DE}"
puts char  # Output: 曞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26334;</p>  <!-- Display: 曞 -->

HTML Hexadecimal:

<p>HTML hex: &#x66DE;</p>  <!-- Display: 曞 -->

URL Encoding:

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

Encodings

MD5:

f60031ade6ff559d21f9f0efcb975379

SHA1:

894418b8972aaf386dfb34e7e7792dfb8569c1da

Base64:

5pue