Unicode Finder

"綘" U+7D98(CJK UNIFIED IDEOGRAPH-7D98)

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

Programming

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

Web

CSS
\007D98
HtmlDecimal
綘
HtmlHexadecimal
綘
Url
%E7%B6%98

Code

MD5
45e3a218c08e720fae240ffbfac97ad5
Sha1
a65d6380dfa705cb69c7de5dfa0ff67ef25b02fa
Base64
57aY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7D98';
console.log(char);  // Output: 綘

Java:

char c = '\u7D98';
System.out.println(c);  // Output: 綘

JSON:

{"text": "\u7D98"}  // Value: 綘

Python:

char = '\u7D98'
print(char)  # Output: 綘

Perl:

my $char = "\x{7D98}";
print $char;  # Output: 綘

PHP:

$char = "\x{7D98}";
echo $char;  // Output: 綘

Ruby:

char = "\u{7D98}"
puts char  # Output: 綘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32152;</p>  <!-- Display: 綘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D98;</p>  <!-- Display: 綘 -->

URL Encoding:

// 綘 URL encoding
https://unicodefinder.com/search.php?query=%E7%B6%98

Encodings

MD5:

45e3a218c08e720fae240ffbfac97ad5

SHA1:

a65d6380dfa705cb69c7de5dfa0ff67ef25b02fa

Base64:

57aY