Unicode Finder

"瞗" U+7797(CJK UNIFIED IDEOGRAPH-7797)

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

Programming

C
\u7797
JavaScript
\u7797
Java
\u7797
Json
\u7797
Python
\u7797
Perl
\x{7797}
PHP
\x{7797}
Ruby
\u{7797}
Rust
\u{7797}
Go
\u7797

Web

CSS
\007797
HtmlDecimal
瞗
HtmlHexadecimal
瞗
Url
%E7%9E%97

Code

MD5
f3c98673ce5a6fddc9ee43137d9f2c37
Sha1
96fe999e75cb46384624d1eea3b9a9071807618f
Base64
556X

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7797';
console.log(char);  // Output: 瞗

Java:

char c = '\u7797';
System.out.println(c);  // Output: 瞗

JSON:

{"text": "\u7797"}  // Value: 瞗

Python:

char = '\u7797'
print(char)  # Output: 瞗

Perl:

my $char = "\x{7797}";
print $char;  # Output: 瞗

PHP:

$char = "\x{7797}";
echo $char;  // Output: 瞗

Ruby:

char = "\u{7797}"
puts char  # Output: 瞗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007797";  /* Display: 瞗 */
}

HTML Decimal:

<p>HTML decimal: &#30615;</p>  <!-- Display: 瞗 -->

HTML Hexadecimal:

<p>HTML hex: &#x7797;</p>  <!-- Display: 瞗 -->

URL Encoding:

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

Encodings

MD5:

f3c98673ce5a6fddc9ee43137d9f2c37

SHA1:

96fe999e75cb46384624d1eea3b9a9071807618f

Base64:

556X