Unicode Finder

"瞴" U+77B4(CJK UNIFIED IDEOGRAPH-77B4)

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

Programming

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

Web

CSS
\0077B4
HtmlDecimal
瞴
HtmlHexadecimal
瞴
Url
%E7%9E%B4

Code

MD5
0005a242f9738d94f68b9cae641e6aa5
Sha1
f645968ba32f3ccbfe8b91238ebb30178f427321
Base64
5560

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77B4';
console.log(char);  // Output: 瞴

Java:

char c = '\u77B4';
System.out.println(c);  // Output: 瞴

JSON:

{"text": "\u77B4"}  // Value: 瞴

Python:

char = '\u77B4'
print(char)  # Output: 瞴

Perl:

my $char = "\x{77B4}";
print $char;  # Output: 瞴

PHP:

$char = "\x{77B4}";
echo $char;  // Output: 瞴

Ruby:

char = "\u{77B4}"
puts char  # Output: 瞴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30644;</p>  <!-- Display: 瞴 -->

HTML Hexadecimal:

<p>HTML hex: &#x77B4;</p>  <!-- Display: 瞴 -->

URL Encoding:

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

Encodings

MD5:

0005a242f9738d94f68b9cae641e6aa5

SHA1:

f645968ba32f3ccbfe8b91238ebb30178f427321

Base64:

5560