Unicode Finder

"矡" U+77E1(CJK UNIFIED IDEOGRAPH-77E1)

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

Programming

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

Web

CSS
\0077E1
HtmlDecimal
矡
HtmlHexadecimal
矡
Url
%E7%9F%A1

Code

MD5
9c749cf669f25fccc46a70ce22cf77ca
Sha1
b48f0ef98920a34e4f1a144983d5ebe34fadf1bc
Base64
55+h

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77E1';
console.log(char);  // Output: 矡

Java:

char c = '\u77E1';
System.out.println(c);  // Output: 矡

JSON:

{"text": "\u77E1"}  // Value: 矡

Python:

char = '\u77E1'
print(char)  # Output: 矡

Perl:

my $char = "\x{77E1}";
print $char;  # Output: 矡

PHP:

$char = "\x{77E1}";
echo $char;  // Output: 矡

Ruby:

char = "\u{77E1}"
puts char  # Output: 矡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30689;</p>  <!-- Display: 矡 -->

HTML Hexadecimal:

<p>HTML hex: &#x77E1;</p>  <!-- Display: 矡 -->

URL Encoding:

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

Encodings

MD5:

9c749cf669f25fccc46a70ce22cf77ca

SHA1:

b48f0ef98920a34e4f1a144983d5ebe34fadf1bc

Base64:

55+h