Unicode Finder

"瞈" U+7788(CJK UNIFIED IDEOGRAPH-7788)

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

Programming

C
\u7788
JavaScript
\u7788
Java
\u7788
Json
\u7788
Python
\u7788
Perl
\x{7788}
PHP
\x{7788}
Ruby
\u{7788}
Rust
\u{7788}
Go
\u7788

Web

CSS
\007788
HtmlDecimal
瞈
HtmlHexadecimal
瞈
Url
%E7%9E%88

Code

MD5
db7f89839d7174149c8e94acdb97aefd
Sha1
0379e70ccc8a18a1073202d37d714016cb9899f2
Base64
556I

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7788';
console.log(char);  // Output: 瞈

Java:

char c = '\u7788';
System.out.println(c);  // Output: 瞈

JSON:

{"text": "\u7788"}  // Value: 瞈

Python:

char = '\u7788'
print(char)  # Output: 瞈

Perl:

my $char = "\x{7788}";
print $char;  # Output: 瞈

PHP:

$char = "\x{7788}";
echo $char;  // Output: 瞈

Ruby:

char = "\u{7788}"
puts char  # Output: 瞈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007788";  /* Display: 瞈 */
}

HTML Decimal:

<p>HTML decimal: &#30600;</p>  <!-- Display: 瞈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7788;</p>  <!-- Display: 瞈 -->

URL Encoding:

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

Encodings

MD5:

db7f89839d7174149c8e94acdb97aefd

SHA1:

0379e70ccc8a18a1073202d37d714016cb9899f2

Base64:

556I