Unicode Finder

"曕" U+66D5(CJK UNIFIED IDEOGRAPH-66D5)

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

Programming

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

Web

CSS
\0066D5
HtmlDecimal
曕
HtmlHexadecimal
曕
Url
%E6%9B%95

Code

MD5
627ad9e0002dccda410b8d63cb9270cd
Sha1
aed153f6fba09032e39700f6521b72252cab012c
Base64
5puV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u66D5';
console.log(char);  // Output: 曕

Java:

char c = '\u66D5';
System.out.println(c);  // Output: 曕

JSON:

{"text": "\u66D5"}  // Value: 曕

Python:

char = '\u66D5'
print(char)  # Output: 曕

Perl:

my $char = "\x{66D5}";
print $char;  # Output: 曕

PHP:

$char = "\x{66D5}";
echo $char;  // Output: 曕

Ruby:

char = "\u{66D5}"
puts char  # Output: 曕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26325;</p>  <!-- Display: 曕 -->

HTML Hexadecimal:

<p>HTML hex: &#x66D5;</p>  <!-- Display: 曕 -->

URL Encoding:

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

Encodings

MD5:

627ad9e0002dccda410b8d63cb9270cd

SHA1:

aed153f6fba09032e39700f6521b72252cab012c

Base64:

5puV