Unicode Finder

"矇" U+77C7(CJK UNIFIED IDEOGRAPH-77C7)

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

Programming

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

Web

CSS
\0077C7
HtmlDecimal
矇
HtmlHexadecimal
矇
Url
%E7%9F%87

Code

MD5
f90a39cab548e28e19af1625432fb798
Sha1
40b589810ac5b583107065ea3b4cd27e4c594001
Base64
55+H

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77C7';
console.log(char);  // Output: 矇

Java:

char c = '\u77C7';
System.out.println(c);  // Output: 矇

JSON:

{"text": "\u77C7"}  // Value: 矇

Python:

char = '\u77C7'
print(char)  # Output: 矇

Perl:

my $char = "\x{77C7}";
print $char;  # Output: 矇

PHP:

$char = "\x{77C7}";
echo $char;  // Output: 矇

Ruby:

char = "\u{77C7}"
puts char  # Output: 矇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30663;</p>  <!-- Display: 矇 -->

HTML Hexadecimal:

<p>HTML hex: &#x77C7;</p>  <!-- Display: 矇 -->

URL Encoding:

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

Encodings

MD5:

f90a39cab548e28e19af1625432fb798

SHA1:

40b589810ac5b583107065ea3b4cd27e4c594001

Base64:

55+H