Unicode Finder

"曇" U+66C7(CJK UNIFIED IDEOGRAPH-66C7)

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

Programming

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

Web

CSS
\0066C7
HtmlDecimal
曇
HtmlHexadecimal
曇
Url
%E6%9B%87

Code

MD5
7cbfeb21a607442f41a3501bbed5cb8d
Sha1
d40ec0965ea846203e4fcb0337493aa12b39b817
Base64
5puH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u66C7';
console.log(char);  // Output: 曇

Java:

char c = '\u66C7';
System.out.println(c);  // Output: 曇

JSON:

{"text": "\u66C7"}  // Value: 曇

Python:

char = '\u66C7'
print(char)  # Output: 曇

Perl:

my $char = "\x{66C7}";
print $char;  # Output: 曇

PHP:

$char = "\x{66C7}";
echo $char;  // Output: 曇

Ruby:

char = "\u{66C7}"
puts char  # Output: 曇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26311;</p>  <!-- Display: 曇 -->

HTML Hexadecimal:

<p>HTML hex: &#x66C7;</p>  <!-- Display: 曇 -->

URL Encoding:

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

Encodings

MD5:

7cbfeb21a607442f41a3501bbed5cb8d

SHA1:

d40ec0965ea846203e4fcb0337493aa12b39b817

Base64:

5puH