Unicode Finder

"眑" U+7711(CJK UNIFIED IDEOGRAPH-7711)

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

Programming

C
\u7711
JavaScript
\u7711
Java
\u7711
Json
\u7711
Python
\u7711
Perl
\x{7711}
PHP
\x{7711}
Ruby
\u{7711}
Rust
\u{7711}
Go
\u7711

Web

CSS
\007711
HtmlDecimal
眑
HtmlHexadecimal
眑
Url
%E7%9C%91

Code

MD5
4fa2943e34b9c01a9d0fd114bc3d83d5
Sha1
d60e58bd3a0afc0dd7abc0c5fa362a57adf8cfb8
Base64
55yR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7711';
console.log(char);  // Output: 眑

Java:

char c = '\u7711';
System.out.println(c);  // Output: 眑

JSON:

{"text": "\u7711"}  // Value: 眑

Python:

char = '\u7711'
print(char)  # Output: 眑

Perl:

my $char = "\x{7711}";
print $char;  # Output: 眑

PHP:

$char = "\x{7711}";
echo $char;  // Output: 眑

Ruby:

char = "\u{7711}"
puts char  # Output: 眑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007711";  /* Display: 眑 */
}

HTML Decimal:

<p>HTML decimal: &#30481;</p>  <!-- Display: 眑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7711;</p>  <!-- Display: 眑 -->

URL Encoding:

// 眑 URL encoding
https://unicodefinder.com/search.php?query=%E7%9C%91

Encodings

MD5:

4fa2943e34b9c01a9d0fd114bc3d83d5

SHA1:

d60e58bd3a0afc0dd7abc0c5fa362a57adf8cfb8

Base64:

55yR