Unicode Finder

"酐" U+9150(CJK UNIFIED IDEOGRAPH-9150)

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

Programming

C
\u9150
JavaScript
\u9150
Java
\u9150
Json
\u9150
Python
\u9150
Perl
\x{9150}
PHP
\x{9150}
Ruby
\u{9150}
Rust
\u{9150}
Go
\u9150

Web

CSS
\009150
HtmlDecimal
酐
HtmlHexadecimal
酐
Url
%E9%85%90

Code

MD5
2db75d29e3b0bde4c69e2981946f356c
Sha1
af9f23cad60ff77b621f29a7b457fffd6cc1b6ba
Base64
6YWQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9150';
console.log(char);  // Output: 酐

Java:

char c = '\u9150';
System.out.println(c);  // Output: 酐

JSON:

{"text": "\u9150"}  // Value: 酐

Python:

char = '\u9150'
print(char)  # Output: 酐

Perl:

my $char = "\x{9150}";
print $char;  # Output: 酐

PHP:

$char = "\x{9150}";
echo $char;  // Output: 酐

Ruby:

char = "\u{9150}"
puts char  # Output: 酐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009150";  /* Display: 酐 */
}

HTML Decimal:

<p>HTML decimal: &#37200;</p>  <!-- Display: 酐 -->

HTML Hexadecimal:

<p>HTML hex: &#x9150;</p>  <!-- Display: 酐 -->

URL Encoding:

// 酐 URL encoding
https://unicodefinder.com/search.php?query=%E9%85%90

Encodings

MD5:

2db75d29e3b0bde4c69e2981946f356c

SHA1:

af9f23cad60ff77b621f29a7b457fffd6cc1b6ba

Base64:

6YWQ