Unicode Finder

"禋" U+798B(CJK UNIFIED IDEOGRAPH-798B)

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

Programming

C
\u798B
JavaScript
\u798B
Java
\u798B
Json
\u798B
Python
\u798B
Perl
\x{798B}
PHP
\x{798B}
Ruby
\u{798B}
Rust
\u{798B}
Go
\u798B

Web

CSS
\00798B
HtmlDecimal
禋
HtmlHexadecimal
禋
Url
%E7%A6%8B

Code

MD5
06fa874ba499b82ed20c3ea7e5461f71
Sha1
d8582e883639a3a757b7637091024db120f4b0f6
Base64
56aL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u798B';
console.log(char);  // Output: 禋

Java:

char c = '\u798B';
System.out.println(c);  // Output: 禋

JSON:

{"text": "\u798B"}  // Value: 禋

Python:

char = '\u798B'
print(char)  # Output: 禋

Perl:

my $char = "\x{798B}";
print $char;  # Output: 禋

PHP:

$char = "\x{798B}";
echo $char;  // Output: 禋

Ruby:

char = "\u{798B}"
puts char  # Output: 禋

Rust:

let c = '\u{798B}';
println!("{}", c);  // Output: 禋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00798B";  /* Display: 禋 */
}

HTML Decimal:

<p>HTML decimal: &#31115;</p>  <!-- Display: 禋 -->

HTML Hexadecimal:

<p>HTML hex: &#x798B;</p>  <!-- Display: 禋 -->

URL Encoding:

// 禋 URL encoding
https://unicodefinder.com/search.php?query=%E7%A6%8B

Encodings

MD5:

06fa874ba499b82ed20c3ea7e5461f71

SHA1:

d8582e883639a3a757b7637091024db120f4b0f6

Base64:

56aL