Unicode Finder

"禔" U+7994(CJK UNIFIED IDEOGRAPH-7994)

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

Programming

C
\u7994
JavaScript
\u7994
Java
\u7994
Json
\u7994
Python
\u7994
Perl
\x{7994}
PHP
\x{7994}
Ruby
\u{7994}
Rust
\u{7994}
Go
\u7994

Web

CSS
\007994
HtmlDecimal
禔
HtmlHexadecimal
禔
Url
%E7%A6%94

Code

MD5
2afcc8cdd4dfbcaa0e247e435f724bdb
Sha1
08ba0248d18d1d5dc5b83d4f73a7744237d971af
Base64
56aU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7994';
console.log(char);  // Output: 禔

Java:

char c = '\u7994';
System.out.println(c);  // Output: 禔

JSON:

{"text": "\u7994"}  // Value: 禔

Python:

char = '\u7994'
print(char)  # Output: 禔

Perl:

my $char = "\x{7994}";
print $char;  # Output: 禔

PHP:

$char = "\x{7994}";
echo $char;  // Output: 禔

Ruby:

char = "\u{7994}"
puts char  # Output: 禔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007994";  /* Display: 禔 */
}

HTML Decimal:

<p>HTML decimal: &#31124;</p>  <!-- Display: 禔 -->

HTML Hexadecimal:

<p>HTML hex: &#x7994;</p>  <!-- Display: 禔 -->

URL Encoding:

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

Encodings

MD5:

2afcc8cdd4dfbcaa0e247e435f724bdb

SHA1:

08ba0248d18d1d5dc5b83d4f73a7744237d971af

Base64:

56aU