Unicode Finder

"禈" U+7988(CJK UNIFIED IDEOGRAPH-7988)

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

Programming

C
\u7988
JavaScript
\u7988
Java
\u7988
Json
\u7988
Python
\u7988
Perl
\x{7988}
PHP
\x{7988}
Ruby
\u{7988}
Rust
\u{7988}
Go
\u7988

Web

CSS
\007988
HtmlDecimal
禈
HtmlHexadecimal
禈
Url
%E7%A6%88

Code

MD5
dabae61111bf3c9a617e1eb96ca19b77
Sha1
232cdf271cf8e7a1c21cb3e8bf765af02abcc6ec
Base64
56aI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7988';
console.log(char);  // Output: 禈

Java:

char c = '\u7988';
System.out.println(c);  // Output: 禈

JSON:

{"text": "\u7988"}  // Value: 禈

Python:

char = '\u7988'
print(char)  # Output: 禈

Perl:

my $char = "\x{7988}";
print $char;  # Output: 禈

PHP:

$char = "\x{7988}";
echo $char;  // Output: 禈

Ruby:

char = "\u{7988}"
puts char  # Output: 禈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007988";  /* Display: 禈 */
}

HTML Decimal:

<p>HTML decimal: &#31112;</p>  <!-- Display: 禈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7988;</p>  <!-- Display: 禈 -->

URL Encoding:

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

Encodings

MD5:

dabae61111bf3c9a617e1eb96ca19b77

SHA1:

232cdf271cf8e7a1c21cb3e8bf765af02abcc6ec

Base64:

56aI