Unicode Finder

"顆" U+9846(CJK UNIFIED IDEOGRAPH-9846)

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

Programming

C
\u9846
JavaScript
\u9846
Java
\u9846
Json
\u9846
Python
\u9846
Perl
\x{9846}
PHP
\x{9846}
Ruby
\u{9846}
Rust
\u{9846}
Go
\u9846

Web

CSS
\009846
HtmlDecimal
顆
HtmlHexadecimal
顆
Url
%E9%A1%86

Code

MD5
175a6a7dffcc549e71adf148f4d2935c
Sha1
4766b83dd2ae496d4aa86f67c65bda436af52278
Base64
6aGG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9846';
console.log(char);  // Output: 顆

Java:

char c = '\u9846';
System.out.println(c);  // Output: 顆

JSON:

{"text": "\u9846"}  // Value: 顆

Python:

char = '\u9846'
print(char)  # Output: 顆

Perl:

my $char = "\x{9846}";
print $char;  # Output: 顆

PHP:

$char = "\x{9846}";
echo $char;  // Output: 顆

Ruby:

char = "\u{9846}"
puts char  # Output: 顆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009846";  /* Display: 顆 */
}

HTML Decimal:

<p>HTML decimal: &#38982;</p>  <!-- Display: 顆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9846;</p>  <!-- Display: 顆 -->

URL Encoding:

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

Encodings

MD5:

175a6a7dffcc549e71adf148f4d2935c

SHA1:

4766b83dd2ae496d4aa86f67c65bda436af52278

Base64:

6aGG