Unicode Finder

"眇" U+7707(CJK UNIFIED IDEOGRAPH-7707)

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

Programming

C
\u7707
JavaScript
\u7707
Java
\u7707
Json
\u7707
Python
\u7707
Perl
\x{7707}
PHP
\x{7707}
Ruby
\u{7707}
Rust
\u{7707}
Go
\u7707

Web

CSS
\007707
HtmlDecimal
眇
HtmlHexadecimal
眇
Url
%E7%9C%87

Code

MD5
2a4997fcac6154c2a41451df8b76d877
Sha1
2ba501405387eec20feb2da0ebc5e0550f3bfa77
Base64
55yH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7707';
console.log(char);  // Output: 眇

Java:

char c = '\u7707';
System.out.println(c);  // Output: 眇

JSON:

{"text": "\u7707"}  // Value: 眇

Python:

char = '\u7707'
print(char)  # Output: 眇

Perl:

my $char = "\x{7707}";
print $char;  # Output: 眇

PHP:

$char = "\x{7707}";
echo $char;  // Output: 眇

Ruby:

char = "\u{7707}"
puts char  # Output: 眇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007707";  /* Display: 眇 */
}

HTML Decimal:

<p>HTML decimal: &#30471;</p>  <!-- Display: 眇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7707;</p>  <!-- Display: 眇 -->

URL Encoding:

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

Encodings

MD5:

2a4997fcac6154c2a41451df8b76d877

SHA1:

2ba501405387eec20feb2da0ebc5e0550f3bfa77

Base64:

55yH