Unicode Finder

"矲" U+77F2(CJK UNIFIED IDEOGRAPH-77F2)

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

Programming

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

Web

CSS
\0077F2
HtmlDecimal
矲
HtmlHexadecimal
矲
Url
%E7%9F%B2

Code

MD5
866d3e0d237d25dbfd9eeec3be0a31d7
Sha1
98d7010c301ab2911d987ce8ec20f1b8ca252153
Base64
55+y

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77F2';
console.log(char);  // Output: 矲

Java:

char c = '\u77F2';
System.out.println(c);  // Output: 矲

JSON:

{"text": "\u77F2"}  // Value: 矲

Python:

char = '\u77F2'
print(char)  # Output: 矲

Perl:

my $char = "\x{77F2}";
print $char;  # Output: 矲

PHP:

$char = "\x{77F2}";
echo $char;  // Output: 矲

Ruby:

char = "\u{77F2}"
puts char  # Output: 矲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30706;</p>  <!-- Display: 矲 -->

HTML Hexadecimal:

<p>HTML hex: &#x77F2;</p>  <!-- Display: 矲 -->

URL Encoding:

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

Encodings

MD5:

866d3e0d237d25dbfd9eeec3be0a31d7

SHA1:

98d7010c301ab2911d987ce8ec20f1b8ca252153

Base64:

55+y