Unicode Finder

"眐" U+7710(CJK UNIFIED IDEOGRAPH-7710)

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

Programming

C
\u7710
JavaScript
\u7710
Java
\u7710
Json
\u7710
Python
\u7710
Perl
\x{7710}
PHP
\x{7710}
Ruby
\u{7710}
Rust
\u{7710}
Go
\u7710

Web

CSS
\007710
HtmlDecimal
眐
HtmlHexadecimal
眐
Url
%E7%9C%90

Code

MD5
d66d9620f91d7c2c29ec5aec22f926cf
Sha1
4193ce1bc3850b9cf3c2076833b871598d204090
Base64
55yQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7710';
console.log(char);  // Output: 眐

Java:

char c = '\u7710';
System.out.println(c);  // Output: 眐

JSON:

{"text": "\u7710"}  // Value: 眐

Python:

char = '\u7710'
print(char)  # Output: 眐

Perl:

my $char = "\x{7710}";
print $char;  # Output: 眐

PHP:

$char = "\x{7710}";
echo $char;  // Output: 眐

Ruby:

char = "\u{7710}"
puts char  # Output: 眐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007710";  /* Display: 眐 */
}

HTML Decimal:

<p>HTML decimal: &#30480;</p>  <!-- Display: 眐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7710;</p>  <!-- Display: 眐 -->

URL Encoding:

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

Encodings

MD5:

d66d9620f91d7c2c29ec5aec22f926cf

SHA1:

4193ce1bc3850b9cf3c2076833b871598d204090

Base64:

55yQ