Unicode Finder

"瞭" U+77AD(CJK UNIFIED IDEOGRAPH-77AD)

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

Programming

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

Web

CSS
\0077AD
HtmlDecimal
瞭
HtmlHexadecimal
瞭
Url
%E7%9E%AD

Code

MD5
6d27f4d58d18cd746d56f22ccca8f2e4
Sha1
c4d52d19d11e98a99a2b23e5b6f00947f9ff90cf
Base64
556t

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77AD';
console.log(char);  // Output: 瞭

Java:

char c = '\u77AD';
System.out.println(c);  // Output: 瞭

JSON:

{"text": "\u77AD"}  // Value: 瞭

Python:

char = '\u77AD'
print(char)  # Output: 瞭

Perl:

my $char = "\x{77AD}";
print $char;  # Output: 瞭

PHP:

$char = "\x{77AD}";
echo $char;  // Output: 瞭

Ruby:

char = "\u{77AD}"
puts char  # Output: 瞭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30637;</p>  <!-- Display: 瞭 -->

HTML Hexadecimal:

<p>HTML hex: &#x77AD;</p>  <!-- Display: 瞭 -->

URL Encoding:

// 瞭 URL encoding
https://unicodefinder.com/search.php?query=%E7%9E%AD

Encodings

MD5:

6d27f4d58d18cd746d56f22ccca8f2e4

SHA1:

c4d52d19d11e98a99a2b23e5b6f00947f9ff90cf

Base64:

556t