Unicode Finder

"綜" U+7D9C(CJK UNIFIED IDEOGRAPH-7D9C)

U+7D9C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7D9C

Programming

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

Web

CSS
\007D9C
HtmlDecimal
綜
HtmlHexadecimal
綜
Url
%E7%B6%9C

Code

MD5
eb7855c7c3886b599239abd06076c925
Sha1
a6b46e29d550fdbe4142e107c8f68d3dafcc1f41
Base64
57ac

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7D9C';
console.log(char);  // Output: 綜

Java:

char c = '\u7D9C';
System.out.println(c);  // Output: 綜

JSON:

{"text": "\u7D9C"}  // Value: 綜

Python:

char = '\u7D9C'
print(char)  # Output: 綜

Perl:

my $char = "\x{7D9C}";
print $char;  # Output: 綜

PHP:

$char = "\x{7D9C}";
echo $char;  // Output: 綜

Ruby:

char = "\u{7D9C}"
puts char  # Output: 綜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32156;</p>  <!-- Display: 綜 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D9C;</p>  <!-- Display: 綜 -->

URL Encoding:

// 綜 URL encoding
https://unicodefinder.com/search.php?query=%E7%B6%9C

Encodings

MD5:

eb7855c7c3886b599239abd06076c925

SHA1:

a6b46e29d550fdbe4142e107c8f68d3dafcc1f41

Base64:

57ac