Unicode Finder

"曆" U+66C6(CJK UNIFIED IDEOGRAPH-66C6)

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

Programming

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

Web

CSS
\0066C6
HtmlDecimal
曆
HtmlHexadecimal
曆
Url
%E6%9B%86

Code

MD5
b4150db1a0e7698db2c4e54085e6dfb2
Sha1
f67d0de3f6664a605cf64c0faf742d197e4c7ff7
Base64
5puG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u66C6';
console.log(char);  // Output: 曆

Java:

char c = '\u66C6';
System.out.println(c);  // Output: 曆

JSON:

{"text": "\u66C6"}  // Value: 曆

Python:

char = '\u66C6'
print(char)  # Output: 曆

Perl:

my $char = "\x{66C6}";
print $char;  # Output: 曆

PHP:

$char = "\x{66C6}";
echo $char;  // Output: 曆

Ruby:

char = "\u{66C6}"
puts char  # Output: 曆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26310;</p>  <!-- Display: 曆 -->

HTML Hexadecimal:

<p>HTML hex: &#x66C6;</p>  <!-- Display: 曆 -->

URL Encoding:

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

Encodings

MD5:

b4150db1a0e7698db2c4e54085e6dfb2

SHA1:

f67d0de3f6664a605cf64c0faf742d197e4c7ff7

Base64:

5puG