Unicode Finder

"眀" U+7700(CJK UNIFIED IDEOGRAPH-7700)

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

Programming

C
\u7700
JavaScript
\u7700
Java
\u7700
Json
\u7700
Python
\u7700
Perl
\x{7700}
PHP
\x{7700}
Ruby
\u{7700}
Rust
\u{7700}
Go
\u7700

Web

CSS
\007700
HtmlDecimal
眀
HtmlHexadecimal
眀
Url
%E7%9C%80

Code

MD5
f106335bbccbb80d5eebaa41a4f034a2
Sha1
2d03511cda998d4d961e7ea757b9d717dfe3e9cf
Base64
55yA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7700';
console.log(char);  // Output: 眀

Java:

char c = '\u7700';
System.out.println(c);  // Output: 眀

JSON:

{"text": "\u7700"}  // Value: 眀

Python:

char = '\u7700'
print(char)  # Output: 眀

Perl:

my $char = "\x{7700}";
print $char;  # Output: 眀

PHP:

$char = "\x{7700}";
echo $char;  // Output: 眀

Ruby:

char = "\u{7700}"
puts char  # Output: 眀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007700";  /* Display: 眀 */
}

HTML Decimal:

<p>HTML decimal: &#30464;</p>  <!-- Display: 眀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7700;</p>  <!-- Display: 眀 -->

URL Encoding:

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

Encodings

MD5:

f106335bbccbb80d5eebaa41a4f034a2

SHA1:

2d03511cda998d4d961e7ea757b9d717dfe3e9cf

Base64:

55yA