Unicode Finder

"睶" U+7776(CJK UNIFIED IDEOGRAPH-7776)

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

Programming

C
\u7776
JavaScript
\u7776
Java
\u7776
Json
\u7776
Python
\u7776
Perl
\x{7776}
PHP
\x{7776}
Ruby
\u{7776}
Rust
\u{7776}
Go
\u7776

Web

CSS
\007776
HtmlDecimal
睶
HtmlHexadecimal
睶
Url
%E7%9D%B6

Code

MD5
a3ec3665fa6c6f111d5b8215d435b549
Sha1
15dc447f77a0caef70aff90d6f2ddd2a95ec9606
Base64
5522

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7776';
console.log(char);  // Output: 睶

Java:

char c = '\u7776';
System.out.println(c);  // Output: 睶

JSON:

{"text": "\u7776"}  // Value: 睶

Python:

char = '\u7776'
print(char)  # Output: 睶

Perl:

my $char = "\x{7776}";
print $char;  # Output: 睶

PHP:

$char = "\x{7776}";
echo $char;  // Output: 睶

Ruby:

char = "\u{7776}"
puts char  # Output: 睶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007776";  /* Display: 睶 */
}

HTML Decimal:

<p>HTML decimal: &#30582;</p>  <!-- Display: 睶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7776;</p>  <!-- Display: 睶 -->

URL Encoding:

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

Encodings

MD5:

a3ec3665fa6c6f111d5b8215d435b549

SHA1:

15dc447f77a0caef70aff90d6f2ddd2a95ec9606

Base64:

5522