Unicode Finder

"瞌" U+778C(CJK UNIFIED IDEOGRAPH-778C)

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

Programming

C
\u778C
JavaScript
\u778C
Java
\u778C
Json
\u778C
Python
\u778C
Perl
\x{778C}
PHP
\x{778C}
Ruby
\u{778C}
Rust
\u{778C}
Go
\u778C

Web

CSS
\00778C
HtmlDecimal
瞌
HtmlHexadecimal
瞌
Url
%E7%9E%8C

Code

MD5
8d24bf93dbf34b79f756f32fc0e759e3
Sha1
c8c8cdd3ee4d88cc4f8e85fcef167e681c597994
Base64
556M

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u778C';
console.log(char);  // Output: 瞌

Java:

char c = '\u778C';
System.out.println(c);  // Output: 瞌

JSON:

{"text": "\u778C"}  // Value: 瞌

Python:

char = '\u778C'
print(char)  # Output: 瞌

Perl:

my $char = "\x{778C}";
print $char;  # Output: 瞌

PHP:

$char = "\x{778C}";
echo $char;  // Output: 瞌

Ruby:

char = "\u{778C}"
puts char  # Output: 瞌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30604;</p>  <!-- Display: 瞌 -->

HTML Hexadecimal:

<p>HTML hex: &#x778C;</p>  <!-- Display: 瞌 -->

URL Encoding:

// 瞌 URL encoding
https://unicodefinder.com/search.php?query=%E7%9E%8C

Encodings

MD5:

8d24bf93dbf34b79f756f32fc0e759e3

SHA1:

c8c8cdd3ee4d88cc4f8e85fcef167e681c597994

Base64:

556M