Unicode Finder

"矝" U+77DD(CJK UNIFIED IDEOGRAPH-77DD)

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

Programming

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

Web

CSS
\0077DD
HtmlDecimal
矝
HtmlHexadecimal
矝
Url
%E7%9F%9D

Code

MD5
6e8e64f0d48149c856f439ea6bedd3e6
Sha1
3dc8116674d7d38961bc35254677b42a4ebb3a9c
Base64
55+d

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77DD';
console.log(char);  // Output: 矝

Java:

char c = '\u77DD';
System.out.println(c);  // Output: 矝

JSON:

{"text": "\u77DD"}  // Value: 矝

Python:

char = '\u77DD'
print(char)  # Output: 矝

Perl:

my $char = "\x{77DD}";
print $char;  # Output: 矝

PHP:

$char = "\x{77DD}";
echo $char;  // Output: 矝

Ruby:

char = "\u{77DD}"
puts char  # Output: 矝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30685;</p>  <!-- Display: 矝 -->

HTML Hexadecimal:

<p>HTML hex: &#x77DD;</p>  <!-- Display: 矝 -->

URL Encoding:

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

Encodings

MD5:

6e8e64f0d48149c856f439ea6bedd3e6

SHA1:

3dc8116674d7d38961bc35254677b42a4ebb3a9c

Base64:

55+d