Unicode Finder

"睸" U+7778(CJK UNIFIED IDEOGRAPH-7778)

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

Programming

C
\u7778
JavaScript
\u7778
Java
\u7778
Json
\u7778
Python
\u7778
Perl
\x{7778}
PHP
\x{7778}
Ruby
\u{7778}
Rust
\u{7778}
Go
\u7778

Web

CSS
\007778
HtmlDecimal
睸
HtmlHexadecimal
睸
Url
%E7%9D%B8

Code

MD5
f624bf2aa4f437ba1ef435adf99bea37
Sha1
d307483e270123c8ce887c2254cfb92705028ef0
Base64
5524

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7778';
console.log(char);  // Output: 睸

Java:

char c = '\u7778';
System.out.println(c);  // Output: 睸

JSON:

{"text": "\u7778"}  // Value: 睸

Python:

char = '\u7778'
print(char)  # Output: 睸

Perl:

my $char = "\x{7778}";
print $char;  # Output: 睸

PHP:

$char = "\x{7778}";
echo $char;  // Output: 睸

Ruby:

char = "\u{7778}"
puts char  # Output: 睸

Rust:

let c = '\u{7778}';
println!("{}", c);  // Output: 睸

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007778";  /* Display: 睸 */
}

HTML Decimal:

<p>HTML decimal: &#30584;</p>  <!-- Display: 睸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7778;</p>  <!-- Display: 睸 -->

URL Encoding:

// 睸 URL encoding
https://unicodefinder.com/search.php?query=%E7%9D%B8

Encodings

MD5:

f624bf2aa4f437ba1ef435adf99bea37

SHA1:

d307483e270123c8ce887c2254cfb92705028ef0

Base64:

5524