Unicode Finder

"餆" U+9906(CJK UNIFIED IDEOGRAPH-9906)

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

Programming

C
\u9906
JavaScript
\u9906
Java
\u9906
Json
\u9906
Python
\u9906
Perl
\x{9906}
PHP
\x{9906}
Ruby
\u{9906}
Rust
\u{9906}
Go
\u9906

Web

CSS
\009906
HtmlDecimal
餆
HtmlHexadecimal
餆
Url
%E9%A4%86

Code

MD5
0a87b73e7adced24175af029a6aaa7e3
Sha1
bb07dde07185b3f4973d1f7c2cc36655fbd30fd2
Base64
6aSG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9906';
console.log(char);  // Output: 餆

Java:

char c = '\u9906';
System.out.println(c);  // Output: 餆

JSON:

{"text": "\u9906"}  // Value: 餆

Python:

char = '\u9906'
print(char)  # Output: 餆

Perl:

my $char = "\x{9906}";
print $char;  # Output: 餆

PHP:

$char = "\x{9906}";
echo $char;  // Output: 餆

Ruby:

char = "\u{9906}"
puts char  # Output: 餆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009906";  /* Display: 餆 */
}

HTML Decimal:

<p>HTML decimal: &#39174;</p>  <!-- Display: 餆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9906;</p>  <!-- Display: 餆 -->

URL Encoding:

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

Encodings

MD5:

0a87b73e7adced24175af029a6aaa7e3

SHA1:

bb07dde07185b3f4973d1f7c2cc36655fbd30fd2

Base64:

6aSG