Unicode Finder

"綎" U+7D8E(CJK UNIFIED IDEOGRAPH-7D8E)

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

Programming

C
\u7D8E
JavaScript
\u7D8E
Java
\u7D8E
Json
\u7D8E
Python
\u7D8E
Perl
\x{7D8E}
PHP
\x{7D8E}
Ruby
\u{7D8E}
Rust
\u{7D8E}
Go
\u7D8E

Web

CSS
\007D8E
HtmlDecimal
綎
HtmlHexadecimal
綎
Url
%E7%B6%8E

Code

MD5
05ddb60c530671f7cf113a4d689b4082
Sha1
1de56827d3d185dd85a77f2a41abb708c7e720ad
Base64
57aO

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D8E';
console.log(char);  // Output: 綎

Java:

char c = '\u7D8E';
System.out.println(c);  // Output: 綎

JSON:

{"text": "\u7D8E"}  // Value: 綎

Python:

char = '\u7D8E'
print(char)  # Output: 綎

Perl:

my $char = "\x{7D8E}";
print $char;  # Output: 綎

PHP:

$char = "\x{7D8E}";
echo $char;  // Output: 綎

Ruby:

char = "\u{7D8E}"
puts char  # Output: 綎

Rust:

let c = '\u{7D8E}';
println!("{}", c);  // Output: 綎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007D8E";  /* Display: 綎 */
}

HTML Decimal:

<p>HTML decimal: &#32142;</p>  <!-- Display: 綎 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D8E;</p>  <!-- Display: 綎 -->

URL Encoding:

// 綎 URL encoding
https://unicodefinder.com/search.php?query=%E7%B6%8E

Encodings

MD5:

05ddb60c530671f7cf113a4d689b4082

SHA1:

1de56827d3d185dd85a77f2a41abb708c7e720ad

Base64:

57aO