Unicode Finder

"顈" U+9848(CJK UNIFIED IDEOGRAPH-9848)

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

Programming

C
\u9848
JavaScript
\u9848
Java
\u9848
Json
\u9848
Python
\u9848
Perl
\x{9848}
PHP
\x{9848}
Ruby
\u{9848}
Rust
\u{9848}
Go
\u9848

Web

CSS
\009848
HtmlDecimal
顈
HtmlHexadecimal
顈
Url
%E9%A1%88

Code

MD5
2af9a9fc7d95058d2b46532a15a9a92f
Sha1
42f327d4870a2685429d8d518ac5e45a7f199f91
Base64
6aGI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9848';
console.log(char);  // Output: 顈

Java:

char c = '\u9848';
System.out.println(c);  // Output: 顈

JSON:

{"text": "\u9848"}  // Value: 顈

Python:

char = '\u9848'
print(char)  # Output: 顈

Perl:

my $char = "\x{9848}";
print $char;  # Output: 顈

PHP:

$char = "\x{9848}";
echo $char;  // Output: 顈

Ruby:

char = "\u{9848}"
puts char  # Output: 顈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009848";  /* Display: 顈 */
}

HTML Decimal:

<p>HTML decimal: &#38984;</p>  <!-- Display: 顈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9848;</p>  <!-- Display: 顈 -->

URL Encoding:

// 顈 URL encoding
https://unicodefinder.com/search.php?query=%E9%A1%88

Encodings

MD5:

2af9a9fc7d95058d2b46532a15a9a92f

SHA1:

42f327d4870a2685429d8d518ac5e45a7f199f91

Base64:

6aGI