Unicode Finder

"瞋" U+778B(CJK UNIFIED IDEOGRAPH-778B)

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

Programming

C
\u778B
JavaScript
\u778B
Java
\u778B
Json
\u778B
Python
\u778B
Perl
\x{778B}
PHP
\x{778B}
Ruby
\u{778B}
Rust
\u{778B}
Go
\u778B

Web

CSS
\00778B
HtmlDecimal
瞋
HtmlHexadecimal
瞋
Url
%E7%9E%8B

Code

MD5
895c3820220ff0e5576d032c055d1171
Sha1
36aec3e3c734da558860c51f1f6af5c41eb81769
Base64
556L

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u778B';
console.log(char);  // Output: 瞋

Java:

char c = '\u778B';
System.out.println(c);  // Output: 瞋

JSON:

{"text": "\u778B"}  // Value: 瞋

Python:

char = '\u778B'
print(char)  # Output: 瞋

Perl:

my $char = "\x{778B}";
print $char;  # Output: 瞋

PHP:

$char = "\x{778B}";
echo $char;  // Output: 瞋

Ruby:

char = "\u{778B}"
puts char  # Output: 瞋

Rust:

let c = '\u{778B}';
println!("{}", c);  // Output: 瞋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00778B";  /* Display: 瞋 */
}

HTML Decimal:

<p>HTML decimal: &#30603;</p>  <!-- Display: 瞋 -->

HTML Hexadecimal:

<p>HTML hex: &#x778B;</p>  <!-- Display: 瞋 -->

URL Encoding:

// 瞋 URL encoding
https://unicodefinder.com/search.php?query=%E7%9E%8B

Encodings

MD5:

895c3820220ff0e5576d032c055d1171

SHA1:

36aec3e3c734da558860c51f1f6af5c41eb81769

Base64:

556L