Unicode Finder

"瞝" U+779D(CJK UNIFIED IDEOGRAPH-779D)

U+779D
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-779D

Programming

C
\u779D
JavaScript
\u779D
Java
\u779D
Json
\u779D
Python
\u779D
Perl
\x{779D}
PHP
\x{779D}
Ruby
\u{779D}
Rust
\u{779D}
Go
\u779D

Web

CSS
\00779D
HtmlDecimal
瞝
HtmlHexadecimal
瞝
Url
%E7%9E%9D

Code

MD5
e7c4daf24cb61040c26a5d8f2fb5beed
Sha1
8d1dc3148c8f03d8550b60a89e2de5ac7f715376
Base64
556d

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u779D';
console.log(char);  // Output: 瞝

Java:

char c = '\u779D';
System.out.println(c);  // Output: 瞝

JSON:

{"text": "\u779D"}  // Value: 瞝

Python:

char = '\u779D'
print(char)  # Output: 瞝

Perl:

my $char = "\x{779D}";
print $char;  # Output: 瞝

PHP:

$char = "\x{779D}";
echo $char;  // Output: 瞝

Ruby:

char = "\u{779D}"
puts char  # Output: 瞝

Rust:

let c = '\u{779D}';
println!("{}", c);  // Output: 瞝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00779D";  /* Display: 瞝 */
}

HTML Decimal:

<p>HTML decimal: &#30621;</p>  <!-- Display: 瞝 -->

HTML Hexadecimal:

<p>HTML hex: &#x779D;</p>  <!-- Display: 瞝 -->

URL Encoding:

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

Encodings

MD5:

e7c4daf24cb61040c26a5d8f2fb5beed

SHA1:

8d1dc3148c8f03d8550b60a89e2de5ac7f715376

Base64:

556d