Unicode Finder

"矈" U+77C8(CJK UNIFIED IDEOGRAPH-77C8)

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

Programming

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

Web

CSS
\0077C8
HtmlDecimal
矈
HtmlHexadecimal
矈
Url
%E7%9F%88

Code

MD5
600a75515b44ba32a66f7c8fc7e34a02
Sha1
8d29859665fc894f4fe65c2b8fd8d9df28633cf7
Base64
55+I

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77C8';
console.log(char);  // Output: 矈

Java:

char c = '\u77C8';
System.out.println(c);  // Output: 矈

JSON:

{"text": "\u77C8"}  // Value: 矈

Python:

char = '\u77C8'
print(char)  # Output: 矈

Perl:

my $char = "\x{77C8}";
print $char;  # Output: 矈

PHP:

$char = "\x{77C8}";
echo $char;  // Output: 矈

Ruby:

char = "\u{77C8}"
puts char  # Output: 矈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30664;</p>  <!-- Display: 矈 -->

HTML Hexadecimal:

<p>HTML hex: &#x77C8;</p>  <!-- Display: 矈 -->

URL Encoding:

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

Encodings

MD5:

600a75515b44ba32a66f7c8fc7e34a02

SHA1:

8d29859665fc894f4fe65c2b8fd8d9df28633cf7

Base64:

55+I