Unicode Finder

"瞘" U+7798(CJK UNIFIED IDEOGRAPH-7798)

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

Programming

C
\u7798
JavaScript
\u7798
Java
\u7798
Json
\u7798
Python
\u7798
Perl
\x{7798}
PHP
\x{7798}
Ruby
\u{7798}
Rust
\u{7798}
Go
\u7798

Web

CSS
\007798
HtmlDecimal
瞘
HtmlHexadecimal
瞘
Url
%E7%9E%98

Code

MD5
c7c2e3771ec5c0fb1b99a6be3e0d7311
Sha1
6db86ab9176ba57303788eacfcd23b896d3690dc
Base64
556Y

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7798';
console.log(char);  // Output: 瞘

Java:

char c = '\u7798';
System.out.println(c);  // Output: 瞘

JSON:

{"text": "\u7798"}  // Value: 瞘

Python:

char = '\u7798'
print(char)  # Output: 瞘

Perl:

my $char = "\x{7798}";
print $char;  # Output: 瞘

PHP:

$char = "\x{7798}";
echo $char;  // Output: 瞘

Ruby:

char = "\u{7798}"
puts char  # Output: 瞘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007798";  /* Display: 瞘 */
}

HTML Decimal:

<p>HTML decimal: &#30616;</p>  <!-- Display: 瞘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7798;</p>  <!-- Display: 瞘 -->

URL Encoding:

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

Encodings

MD5:

c7c2e3771ec5c0fb1b99a6be3e0d7311

SHA1:

6db86ab9176ba57303788eacfcd23b896d3690dc

Base64:

556Y