Unicode Finder

"矨" U+77E8(CJK UNIFIED IDEOGRAPH-77E8)

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

Programming

C
\u77E8
JavaScript
\u77E8
Java
\u77E8
Json
\u77E8
Python
\u77E8
Perl
\x{77E8}
PHP
\x{77E8}
Ruby
\u{77E8}
Rust
\u{77E8}
Go
\u77E8

Web

CSS
\0077E8
HtmlDecimal
矨
HtmlHexadecimal
矨
Url
%E7%9F%A8

Code

MD5
95bc8c92fb06a1a84ffe2226e50ac923
Sha1
c413361ff8f8b70f39c858dee14cb3232406c15e
Base64
55+o

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77E8';
console.log(char);  // Output: 矨

Java:

char c = '\u77E8';
System.out.println(c);  // Output: 矨

JSON:

{"text": "\u77E8"}  // Value: 矨

Python:

char = '\u77E8'
print(char)  # Output: 矨

Perl:

my $char = "\x{77E8}";
print $char;  # Output: 矨

PHP:

$char = "\x{77E8}";
echo $char;  // Output: 矨

Ruby:

char = "\u{77E8}"
puts char  # Output: 矨

Rust:

let c = '\u{77E8}';
println!("{}", c);  // Output: 矨

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0077E8";  /* Display: 矨 */
}

HTML Decimal:

<p>HTML decimal: &#30696;</p>  <!-- Display: 矨 -->

HTML Hexadecimal:

<p>HTML hex: &#x77E8;</p>  <!-- Display: 矨 -->

URL Encoding:

// 矨 URL encoding
https://unicodefinder.com/search.php?query=%E7%9F%A8

Encodings

MD5:

95bc8c92fb06a1a84ffe2226e50ac923

SHA1:

c413361ff8f8b70f39c858dee14cb3232406c15e

Base64:

55+o