Unicode Finder

"睞" U+775E(CJK UNIFIED IDEOGRAPH-775E)

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

Programming

C
\u775E
JavaScript
\u775E
Java
\u775E
Json
\u775E
Python
\u775E
Perl
\x{775E}
PHP
\x{775E}
Ruby
\u{775E}
Rust
\u{775E}
Go
\u775E

Web

CSS
\00775E
HtmlDecimal
睞
HtmlHexadecimal
睞
Url
%E7%9D%9E

Code

MD5
3797c1cd674f3b01b0c7102cc42ecf58
Sha1
cd5c29ac17f9c1dcb7742409d08da4b1852bb6e9
Base64
552e

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u775E';
console.log(char);  // Output: 睞

Java:

char c = '\u775E';
System.out.println(c);  // Output: 睞

JSON:

{"text": "\u775E"}  // Value: 睞

Python:

char = '\u775E'
print(char)  # Output: 睞

Perl:

my $char = "\x{775E}";
print $char;  # Output: 睞

PHP:

$char = "\x{775E}";
echo $char;  // Output: 睞

Ruby:

char = "\u{775E}"
puts char  # Output: 睞

Rust:

let c = '\u{775E}';
println!("{}", c);  // Output: 睞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00775E";  /* Display: 睞 */
}

HTML Decimal:

<p>HTML decimal: &#30558;</p>  <!-- Display: 睞 -->

HTML Hexadecimal:

<p>HTML hex: &#x775E;</p>  <!-- Display: 睞 -->

URL Encoding:

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

Encodings

MD5:

3797c1cd674f3b01b0c7102cc42ecf58

SHA1:

cd5c29ac17f9c1dcb7742409d08da4b1852bb6e9

Base64:

552e