Unicode Finder

"明" U+660E(CJK UNIFIED IDEOGRAPH-660E)

U+660E
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-660E

Programming

C
\u660E
JavaScript
\u660E
Java
\u660E
Json
\u660E
Python
\u660E
Perl
\x{660E}
PHP
\x{660E}
Ruby
\u{660E}
Rust
\u{660E}
Go
\u660E

Web

CSS
\00660E
HtmlDecimal
明
HtmlHexadecimal
明
Url
%E6%98%8E

Code

MD5
e647d10f148d86acf6a75343e1c2e41c
Sha1
fca811d4f0275ef8ebab2ce9c4683827c8488fb6
Base64
5piO

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u660E';
console.log(char);  // Output: 明

Java:

char c = '\u660E';
System.out.println(c);  // Output: 明

JSON:

{"text": "\u660E"}  // Value: 明

Python:

char = '\u660E'
print(char)  # Output: 明

Perl:

my $char = "\x{660E}";
print $char;  # Output: 明

PHP:

$char = "\x{660E}";
echo $char;  // Output: 明

Ruby:

char = "\u{660E}"
puts char  # Output: 明

Rust:

let c = '\u{660E}';
println!("{}", c);  // Output: 明

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00660E";  /* Display: 明 */
}

HTML Decimal:

<p>HTML decimal: &#26126;</p>  <!-- Display: 明 -->

HTML Hexadecimal:

<p>HTML hex: &#x660E;</p>  <!-- Display: 明 -->

URL Encoding:

// 明 URL encoding
https://unicodefinder.com/search.php?query=%E6%98%8E

Encodings

MD5:

e647d10f148d86acf6a75343e1c2e41c

SHA1:

fca811d4f0275ef8ebab2ce9c4683827c8488fb6

Base64:

5piO