Unicode Finder

"睑" U+7751(CJK UNIFIED IDEOGRAPH-7751)

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

Programming

C
\u7751
JavaScript
\u7751
Java
\u7751
Json
\u7751
Python
\u7751
Perl
\x{7751}
PHP
\x{7751}
Ruby
\u{7751}
Rust
\u{7751}
Go
\u7751

Web

CSS
\007751
HtmlDecimal
睑
HtmlHexadecimal
睑
Url
%E7%9D%91

Code

MD5
1d7ac2b3660d8e08856718483efb19d8
Sha1
dafcc9439b5cae61690a227a7b666b9a63488c3d
Base64
552R

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7751';
console.log(char);  // Output: 睑

Java:

char c = '\u7751';
System.out.println(c);  // Output: 睑

JSON:

{"text": "\u7751"}  // Value: 睑

Python:

char = '\u7751'
print(char)  # Output: 睑

Perl:

my $char = "\x{7751}";
print $char;  # Output: 睑

PHP:

$char = "\x{7751}";
echo $char;  // Output: 睑

Ruby:

char = "\u{7751}"
puts char  # Output: 睑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007751";  /* Display: 睑 */
}

HTML Decimal:

<p>HTML decimal: &#30545;</p>  <!-- Display: 睑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7751;</p>  <!-- Display: 睑 -->

URL Encoding:

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

Encodings

MD5:

1d7ac2b3660d8e08856718483efb19d8

SHA1:

dafcc9439b5cae61690a227a7b666b9a63488c3d

Base64:

552R