Unicode Finder

"礑" U+7911(CJK UNIFIED IDEOGRAPH-7911)

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

Programming

C
\u7911
JavaScript
\u7911
Java
\u7911
Json
\u7911
Python
\u7911
Perl
\x{7911}
PHP
\x{7911}
Ruby
\u{7911}
Rust
\u{7911}
Go
\u7911

Web

CSS
\007911
HtmlDecimal
礑
HtmlHexadecimal
礑
Url
%E7%A4%91

Code

MD5
22db9875d4dfb242615f3bae5d265efa
Sha1
fec2c37a47d07bbd50acd3ded374653358c87b96
Base64
56SR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7911';
console.log(char);  // Output: 礑

Java:

char c = '\u7911';
System.out.println(c);  // Output: 礑

JSON:

{"text": "\u7911"}  // Value: 礑

Python:

char = '\u7911'
print(char)  # Output: 礑

Perl:

my $char = "\x{7911}";
print $char;  # Output: 礑

PHP:

$char = "\x{7911}";
echo $char;  // Output: 礑

Ruby:

char = "\u{7911}"
puts char  # Output: 礑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007911";  /* Display: 礑 */
}

HTML Decimal:

<p>HTML decimal: &#30993;</p>  <!-- Display: 礑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7911;</p>  <!-- Display: 礑 -->

URL Encoding:

// 礑 URL encoding
https://unicodefinder.com/search.php?query=%E7%A4%91

Encodings

MD5:

22db9875d4dfb242615f3bae5d265efa

SHA1:

fec2c37a47d07bbd50acd3ded374653358c87b96

Base64:

56SR