Unicode Finder

"陔" U+9654(CJK UNIFIED IDEOGRAPH-9654)

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

Programming

C
\u9654
JavaScript
\u9654
Java
\u9654
Json
\u9654
Python
\u9654
Perl
\x{9654}
PHP
\x{9654}
Ruby
\u{9654}
Rust
\u{9654}
Go
\u9654

Web

CSS
\009654
HtmlDecimal
陔
HtmlHexadecimal
陔
Url
%E9%99%94

Code

MD5
8d94e1bc5e65715b26d7d373c1758541
Sha1
f182be076855f9b612c1c9631f94fe1b8c8984f8
Base64
6ZmU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9654';
console.log(char);  // Output: 陔

Java:

char c = '\u9654';
System.out.println(c);  // Output: 陔

JSON:

{"text": "\u9654"}  // Value: 陔

Python:

char = '\u9654'
print(char)  # Output: 陔

Perl:

my $char = "\x{9654}";
print $char;  # Output: 陔

PHP:

$char = "\x{9654}";
echo $char;  // Output: 陔

Ruby:

char = "\u{9654}"
puts char  # Output: 陔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009654";  /* Display: 陔 */
}

HTML Decimal:

<p>HTML decimal: &#38484;</p>  <!-- Display: 陔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9654;</p>  <!-- Display: 陔 -->

URL Encoding:

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

Encodings

MD5:

8d94e1bc5e65715b26d7d373c1758541

SHA1:

f182be076855f9b612c1c9631f94fe1b8c8984f8

Base64:

6ZmU