Unicode Finder

"馄" U+9984(CJK UNIFIED IDEOGRAPH-9984)

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

Programming

C
\u9984
JavaScript
\u9984
Java
\u9984
Json
\u9984
Python
\u9984
Perl
\x{9984}
PHP
\x{9984}
Ruby
\u{9984}
Rust
\u{9984}
Go
\u9984

Web

CSS
\009984
HtmlDecimal
馄
HtmlHexadecimal
馄
Url
%E9%A6%84

Code

MD5
974ef4c5b46e2e3d2436c3e0010fb208
Sha1
30e199e71f72108260b62af16ec3ed47ccfed738
Base64
6aaE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9984';
console.log(char);  // Output: 馄

Java:

char c = '\u9984';
System.out.println(c);  // Output: 馄

JSON:

{"text": "\u9984"}  // Value: 馄

Python:

char = '\u9984'
print(char)  # Output: 馄

Perl:

my $char = "\x{9984}";
print $char;  # Output: 馄

PHP:

$char = "\x{9984}";
echo $char;  // Output: 馄

Ruby:

char = "\u{9984}"
puts char  # Output: 馄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009984";  /* Display: 馄 */
}

HTML Decimal:

<p>HTML decimal: &#39300;</p>  <!-- Display: 馄 -->

HTML Hexadecimal:

<p>HTML hex: &#x9984;</p>  <!-- Display: 馄 -->

URL Encoding:

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

Encodings

MD5:

974ef4c5b46e2e3d2436c3e0010fb208

SHA1:

30e199e71f72108260b62af16ec3ed47ccfed738

Base64:

6aaE