Unicode Finder

"餦" U+9926(CJK UNIFIED IDEOGRAPH-9926)

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

Programming

C
\u9926
JavaScript
\u9926
Java
\u9926
Json
\u9926
Python
\u9926
Perl
\x{9926}
PHP
\x{9926}
Ruby
\u{9926}
Rust
\u{9926}
Go
\u9926

Web

CSS
\009926
HtmlDecimal
餦
HtmlHexadecimal
餦
Url
%E9%A4%A6

Code

MD5
1a45e5bb50708bcf49fecbe88c4acc2f
Sha1
7f90cbbb409295c066ecd13f20df24fbafa3e27b
Base64
6aSm

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9926';
console.log(char);  // Output: 餦

Java:

char c = '\u9926';
System.out.println(c);  // Output: 餦

JSON:

{"text": "\u9926"}  // Value: 餦

Python:

char = '\u9926'
print(char)  # Output: 餦

Perl:

my $char = "\x{9926}";
print $char;  # Output: 餦

PHP:

$char = "\x{9926}";
echo $char;  // Output: 餦

Ruby:

char = "\u{9926}"
puts char  # Output: 餦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009926";  /* Display: 餦 */
}

HTML Decimal:

<p>HTML decimal: &#39206;</p>  <!-- Display: 餦 -->

HTML Hexadecimal:

<p>HTML hex: &#x9926;</p>  <!-- Display: 餦 -->

URL Encoding:

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

Encodings

MD5:

1a45e5bb50708bcf49fecbe88c4acc2f

SHA1:

7f90cbbb409295c066ecd13f20df24fbafa3e27b

Base64:

6aSm