Unicode Finder

"眖" U+7716(CJK UNIFIED IDEOGRAPH-7716)

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

Programming

C
\u7716
JavaScript
\u7716
Java
\u7716
Json
\u7716
Python
\u7716
Perl
\x{7716}
PHP
\x{7716}
Ruby
\u{7716}
Rust
\u{7716}
Go
\u7716

Web

CSS
\007716
HtmlDecimal
眖
HtmlHexadecimal
眖
Url
%E7%9C%96

Code

MD5
f4085c693c0b8e0486d18d4148349f7d
Sha1
4ff84754b3be8ac29428449c545b9c3c91d1f29d
Base64
55yW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7716';
console.log(char);  // Output: 眖

Java:

char c = '\u7716';
System.out.println(c);  // Output: 眖

JSON:

{"text": "\u7716"}  // Value: 眖

Python:

char = '\u7716'
print(char)  # Output: 眖

Perl:

my $char = "\x{7716}";
print $char;  # Output: 眖

PHP:

$char = "\x{7716}";
echo $char;  // Output: 眖

Ruby:

char = "\u{7716}"
puts char  # Output: 眖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007716";  /* Display: 眖 */
}

HTML Decimal:

<p>HTML decimal: &#30486;</p>  <!-- Display: 眖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7716;</p>  <!-- Display: 眖 -->

URL Encoding:

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

Encodings

MD5:

f4085c693c0b8e0486d18d4148349f7d

SHA1:

4ff84754b3be8ac29428449c545b9c3c91d1f29d

Base64:

55yW