Unicode Finder

"眗" U+7717(CJK UNIFIED IDEOGRAPH-7717)

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

Programming

C
\u7717
JavaScript
\u7717
Java
\u7717
Json
\u7717
Python
\u7717
Perl
\x{7717}
PHP
\x{7717}
Ruby
\u{7717}
Rust
\u{7717}
Go
\u7717

Web

CSS
\007717
HtmlDecimal
眗
HtmlHexadecimal
眗
Url
%E7%9C%97

Code

MD5
2ba353a021e62dd22364dbe386c96033
Sha1
ae3e208ddd9d7d71398a69c6346f8a2f26bf7e70
Base64
55yX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7717';
console.log(char);  // Output: 眗

Java:

char c = '\u7717';
System.out.println(c);  // Output: 眗

JSON:

{"text": "\u7717"}  // Value: 眗

Python:

char = '\u7717'
print(char)  # Output: 眗

Perl:

my $char = "\x{7717}";
print $char;  # Output: 眗

PHP:

$char = "\x{7717}";
echo $char;  // Output: 眗

Ruby:

char = "\u{7717}"
puts char  # Output: 眗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007717";  /* Display: 眗 */
}

HTML Decimal:

<p>HTML decimal: &#30487;</p>  <!-- Display: 眗 -->

HTML Hexadecimal:

<p>HTML hex: &#x7717;</p>  <!-- Display: 眗 -->

URL Encoding:

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

Encodings

MD5:

2ba353a021e62dd22364dbe386c96033

SHA1:

ae3e208ddd9d7d71398a69c6346f8a2f26bf7e70

Base64:

55yX