Unicode Finder

"睡" U+7761(CJK UNIFIED IDEOGRAPH-7761)

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

Programming

C
\u7761
JavaScript
\u7761
Java
\u7761
Json
\u7761
Python
\u7761
Perl
\x{7761}
PHP
\x{7761}
Ruby
\u{7761}
Rust
\u{7761}
Go
\u7761

Web

CSS
\007761
HtmlDecimal
睡
HtmlHexadecimal
睡
Url
%E7%9D%A1

Code

MD5
0e7c928c54970c3b4896820aeeeb831a
Sha1
c14905ca86dfba0e4ed0d704fb9dac00e75b027c
Base64
552h

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7761';
console.log(char);  // Output: 睡

Java:

char c = '\u7761';
System.out.println(c);  // Output: 睡

JSON:

{"text": "\u7761"}  // Value: 睡

Python:

char = '\u7761'
print(char)  # Output: 睡

Perl:

my $char = "\x{7761}";
print $char;  # Output: 睡

PHP:

$char = "\x{7761}";
echo $char;  // Output: 睡

Ruby:

char = "\u{7761}"
puts char  # Output: 睡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007761";  /* Display: 睡 */
}

HTML Decimal:

<p>HTML decimal: &#30561;</p>  <!-- Display: 睡 -->

HTML Hexadecimal:

<p>HTML hex: &#x7761;</p>  <!-- Display: 睡 -->

URL Encoding:

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

Encodings

MD5:

0e7c928c54970c3b4896820aeeeb831a

SHA1:

c14905ca86dfba0e4ed0d704fb9dac00e75b027c

Base64:

552h