Unicode Finder

"瞖" U+7796(CJK UNIFIED IDEOGRAPH-7796)

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

Programming

C
\u7796
JavaScript
\u7796
Java
\u7796
Json
\u7796
Python
\u7796
Perl
\x{7796}
PHP
\x{7796}
Ruby
\u{7796}
Rust
\u{7796}
Go
\u7796

Web

CSS
\007796
HtmlDecimal
瞖
HtmlHexadecimal
瞖
Url
%E7%9E%96

Code

MD5
7ab19faf58b66666916f455f5f4a007c
Sha1
3a7854ee52c901bfbed642257e58f8216062f1df
Base64
556W

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7796';
console.log(char);  // Output: 瞖

Java:

char c = '\u7796';
System.out.println(c);  // Output: 瞖

JSON:

{"text": "\u7796"}  // Value: 瞖

Python:

char = '\u7796'
print(char)  # Output: 瞖

Perl:

my $char = "\x{7796}";
print $char;  # Output: 瞖

PHP:

$char = "\x{7796}";
echo $char;  // Output: 瞖

Ruby:

char = "\u{7796}"
puts char  # Output: 瞖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007796";  /* Display: 瞖 */
}

HTML Decimal:

<p>HTML decimal: &#30614;</p>  <!-- Display: 瞖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7796;</p>  <!-- Display: 瞖 -->

URL Encoding:

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

Encodings

MD5:

7ab19faf58b66666916f455f5f4a007c

SHA1:

3a7854ee52c901bfbed642257e58f8216062f1df

Base64:

556W