Unicode Finder

"晌" U+664C(CJK UNIFIED IDEOGRAPH-664C)

U+664C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-664C

Programming

C
\u664C
JavaScript
\u664C
Java
\u664C
Json
\u664C
Python
\u664C
Perl
\x{664C}
PHP
\x{664C}
Ruby
\u{664C}
Rust
\u{664C}
Go
\u664C

Web

CSS
\00664C
HtmlDecimal
晌
HtmlHexadecimal
晌
Url
%E6%99%8C

Code

MD5
b648fdd952e69697a8c128bf9e39926b
Sha1
83169aa3b9068019793552e6bca715e0e0cdd767
Base64
5pmM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u664C';
console.log(char);  // Output: 晌

Java:

char c = '\u664C';
System.out.println(c);  // Output: 晌

JSON:

{"text": "\u664C"}  // Value: 晌

Python:

char = '\u664C'
print(char)  # Output: 晌

Perl:

my $char = "\x{664C}";
print $char;  # Output: 晌

PHP:

$char = "\x{664C}";
echo $char;  // Output: 晌

Ruby:

char = "\u{664C}"
puts char  # Output: 晌

Rust:

let c = '\u{664C}';
println!("{}", c);  // Output: 晌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00664C";  /* Display: 晌 */
}

HTML Decimal:

<p>HTML decimal: &#26188;</p>  <!-- Display: 晌 -->

HTML Hexadecimal:

<p>HTML hex: &#x664C;</p>  <!-- Display: 晌 -->

URL Encoding:

// 晌 URL encoding
https://unicodefinder.com/search.php?query=%E6%99%8C

Encodings

MD5:

b648fdd952e69697a8c128bf9e39926b

SHA1:

83169aa3b9068019793552e6bca715e0e0cdd767

Base64:

5pmM