Unicode Finder

"睫" U+776B(CJK UNIFIED IDEOGRAPH-776B)

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

Programming

C
\u776B
JavaScript
\u776B
Java
\u776B
Json
\u776B
Python
\u776B
Perl
\x{776B}
PHP
\x{776B}
Ruby
\u{776B}
Rust
\u{776B}
Go
\u776B

Web

CSS
\00776B
HtmlDecimal
睫
HtmlHexadecimal
睫
Url
%E7%9D%AB

Code

MD5
4c0a5250b23b4d4ba88a89e963fac642
Sha1
04ca2453e8d6a590934df09e6c702621270a5581
Base64
552r

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u776B';
console.log(char);  // Output: 睫

Java:

char c = '\u776B';
System.out.println(c);  // Output: 睫

JSON:

{"text": "\u776B"}  // Value: 睫

Python:

char = '\u776B'
print(char)  # Output: 睫

Perl:

my $char = "\x{776B}";
print $char;  # Output: 睫

PHP:

$char = "\x{776B}";
echo $char;  // Output: 睫

Ruby:

char = "\u{776B}"
puts char  # Output: 睫

Rust:

let c = '\u{776B}';
println!("{}", c);  // Output: 睫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00776B";  /* Display: 睫 */
}

HTML Decimal:

<p>HTML decimal: &#30571;</p>  <!-- Display: 睫 -->

HTML Hexadecimal:

<p>HTML hex: &#x776B;</p>  <!-- Display: 睫 -->

URL Encoding:

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

Encodings

MD5:

4c0a5250b23b4d4ba88a89e963fac642

SHA1:

04ca2453e8d6a590934df09e6c702621270a5581

Base64:

552r