Unicode Finder

"睗" U+7757(CJK UNIFIED IDEOGRAPH-7757)

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

Programming

C
\u7757
JavaScript
\u7757
Java
\u7757
Json
\u7757
Python
\u7757
Perl
\x{7757}
PHP
\x{7757}
Ruby
\u{7757}
Rust
\u{7757}
Go
\u7757

Web

CSS
\007757
HtmlDecimal
睗
HtmlHexadecimal
睗
Url
%E7%9D%97

Code

MD5
bb08eb479919d2a7d487bff189adb5d4
Sha1
0c4d511bf40df99a8b876ab373b182c9af3e9ab9
Base64
552X

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7757';
console.log(char);  // Output: 睗

Java:

char c = '\u7757';
System.out.println(c);  // Output: 睗

JSON:

{"text": "\u7757"}  // Value: 睗

Python:

char = '\u7757'
print(char)  # Output: 睗

Perl:

my $char = "\x{7757}";
print $char;  # Output: 睗

PHP:

$char = "\x{7757}";
echo $char;  // Output: 睗

Ruby:

char = "\u{7757}"
puts char  # Output: 睗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007757";  /* Display: 睗 */
}

HTML Decimal:

<p>HTML decimal: &#30551;</p>  <!-- Display: 睗 -->

HTML Hexadecimal:

<p>HTML hex: &#x7757;</p>  <!-- Display: 睗 -->

URL Encoding:

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

Encodings

MD5:

bb08eb479919d2a7d487bff189adb5d4

SHA1:

0c4d511bf40df99a8b876ab373b182c9af3e9ab9

Base64:

552X