Unicode Finder

"睹" U+7779(CJK UNIFIED IDEOGRAPH-7779)

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

Programming

C
\u7779
JavaScript
\u7779
Java
\u7779
Json
\u7779
Python
\u7779
Perl
\x{7779}
PHP
\x{7779}
Ruby
\u{7779}
Rust
\u{7779}
Go
\u7779

Web

CSS
\007779
HtmlDecimal
睹
HtmlHexadecimal
睹
Url
%E7%9D%B9

Code

MD5
c559497534ced3b5fe53d456d8139f24
Sha1
929b38dca04a9a185b4a2403bd6e6b67f33497e1
Base64
5525

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7779';
console.log(char);  // Output: 睹

Java:

char c = '\u7779';
System.out.println(c);  // Output: 睹

JSON:

{"text": "\u7779"}  // Value: 睹

Python:

char = '\u7779'
print(char)  # Output: 睹

Perl:

my $char = "\x{7779}";
print $char;  # Output: 睹

PHP:

$char = "\x{7779}";
echo $char;  // Output: 睹

Ruby:

char = "\u{7779}"
puts char  # Output: 睹

Rust:

let c = '\u{7779}';
println!("{}", c);  // Output: 睹

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007779";  /* Display: 睹 */
}

HTML Decimal:

<p>HTML decimal: &#30585;</p>  <!-- Display: 睹 -->

HTML Hexadecimal:

<p>HTML hex: &#x7779;</p>  <!-- Display: 睹 -->

URL Encoding:

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

Encodings

MD5:

c559497534ced3b5fe53d456d8139f24

SHA1:

929b38dca04a9a185b4a2403bd6e6b67f33497e1

Base64:

5525