Unicode Finder

"陑" U+9651(CJK UNIFIED IDEOGRAPH-9651)

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

Programming

C
\u9651
JavaScript
\u9651
Java
\u9651
Json
\u9651
Python
\u9651
Perl
\x{9651}
PHP
\x{9651}
Ruby
\u{9651}
Rust
\u{9651}
Go
\u9651

Web

CSS
\009651
HtmlDecimal
陑
HtmlHexadecimal
陑
Url
%E9%99%91

Code

MD5
a7c13abedad04096a1e6fe2788a97ffc
Sha1
7fa87ffd02021bd9014828d9e15ae98487d15533
Base64
6ZmR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9651';
console.log(char);  // Output: 陑

Java:

char c = '\u9651';
System.out.println(c);  // Output: 陑

JSON:

{"text": "\u9651"}  // Value: 陑

Python:

char = '\u9651'
print(char)  # Output: 陑

Perl:

my $char = "\x{9651}";
print $char;  # Output: 陑

PHP:

$char = "\x{9651}";
echo $char;  // Output: 陑

Ruby:

char = "\u{9651}"
puts char  # Output: 陑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009651";  /* Display: 陑 */
}

HTML Decimal:

<p>HTML decimal: &#38481;</p>  <!-- Display: 陑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9651;</p>  <!-- Display: 陑 -->

URL Encoding:

// 陑 URL encoding
https://unicodefinder.com/search.php?query=%E9%99%91

Encodings

MD5:

a7c13abedad04096a1e6fe2788a97ffc

SHA1:

7fa87ffd02021bd9014828d9e15ae98487d15533

Base64:

6ZmR