Unicode Finder

"禘" U+7998(CJK UNIFIED IDEOGRAPH-7998)

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

Programming

C
\u7998
JavaScript
\u7998
Java
\u7998
Json
\u7998
Python
\u7998
Perl
\x{7998}
PHP
\x{7998}
Ruby
\u{7998}
Rust
\u{7998}
Go
\u7998

Web

CSS
\007998
HtmlDecimal
禘
HtmlHexadecimal
禘
Url
%E7%A6%98

Code

MD5
83b4734b6d3f220169bc63df9b2ebc0c
Sha1
daf6c3fbc13dc8a66e9d9717fe13e3045a2d5fdc
Base64
56aY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7998';
console.log(char);  // Output: 禘

Java:

char c = '\u7998';
System.out.println(c);  // Output: 禘

JSON:

{"text": "\u7998"}  // Value: 禘

Python:

char = '\u7998'
print(char)  # Output: 禘

Perl:

my $char = "\x{7998}";
print $char;  # Output: 禘

PHP:

$char = "\x{7998}";
echo $char;  // Output: 禘

Ruby:

char = "\u{7998}"
puts char  # Output: 禘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007998";  /* Display: 禘 */
}

HTML Decimal:

<p>HTML decimal: &#31128;</p>  <!-- Display: 禘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7998;</p>  <!-- Display: 禘 -->

URL Encoding:

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

Encodings

MD5:

83b4734b6d3f220169bc63df9b2ebc0c

SHA1:

daf6c3fbc13dc8a66e9d9717fe13e3045a2d5fdc

Base64:

56aY