Unicode Finder

"矰" U+77F0(CJK UNIFIED IDEOGRAPH-77F0)

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

Programming

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

Web

CSS
\0077F0
HtmlDecimal
矰
HtmlHexadecimal
矰
Url
%E7%9F%B0

Code

MD5
e630eaf9076d2ed3bcdd13b863e28d81
Sha1
8e0667224e7e5c8112331a9025b1704b532ef72a
Base64
55+w

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77F0';
console.log(char);  // Output: 矰

Java:

char c = '\u77F0';
System.out.println(c);  // Output: 矰

JSON:

{"text": "\u77F0"}  // Value: 矰

Python:

char = '\u77F0'
print(char)  # Output: 矰

Perl:

my $char = "\x{77F0}";
print $char;  # Output: 矰

PHP:

$char = "\x{77F0}";
echo $char;  // Output: 矰

Ruby:

char = "\u{77F0}"
puts char  # Output: 矰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30704;</p>  <!-- Display: 矰 -->

HTML Hexadecimal:

<p>HTML hex: &#x77F0;</p>  <!-- Display: 矰 -->

URL Encoding:

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

Encodings

MD5:

e630eaf9076d2ed3bcdd13b863e28d81

SHA1:

8e0667224e7e5c8112331a9025b1704b532ef72a

Base64:

55+w