Unicode Finder

"睐" U+7750(CJK UNIFIED IDEOGRAPH-7750)

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

Programming

C
\u7750
JavaScript
\u7750
Java
\u7750
Json
\u7750
Python
\u7750
Perl
\x{7750}
PHP
\x{7750}
Ruby
\u{7750}
Rust
\u{7750}
Go
\u7750

Web

CSS
\007750
HtmlDecimal
睐
HtmlHexadecimal
睐
Url
%E7%9D%90

Code

MD5
286e0aba77c6f35d87cd050bf8998693
Sha1
f47f97721a2d4554ab97764deffcc39552835a4c
Base64
552Q

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7750';
console.log(char);  // Output: 睐

Java:

char c = '\u7750';
System.out.println(c);  // Output: 睐

JSON:

{"text": "\u7750"}  // Value: 睐

Python:

char = '\u7750'
print(char)  # Output: 睐

Perl:

my $char = "\x{7750}";
print $char;  # Output: 睐

PHP:

$char = "\x{7750}";
echo $char;  // Output: 睐

Ruby:

char = "\u{7750}"
puts char  # Output: 睐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007750";  /* Display: 睐 */
}

HTML Decimal:

<p>HTML decimal: &#30544;</p>  <!-- Display: 睐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7750;</p>  <!-- Display: 睐 -->

URL Encoding:

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

Encodings

MD5:

286e0aba77c6f35d87cd050bf8998693

SHA1:

f47f97721a2d4554ab97764deffcc39552835a4c

Base64:

552Q