Unicode Finder

"閬" U+95AC(CJK UNIFIED IDEOGRAPH-95AC)

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

Programming

C
\u95AC
JavaScript
\u95AC
Java
\u95AC
Json
\u95AC
Python
\u95AC
Perl
\x{95AC}
PHP
\x{95AC}
Ruby
\u{95AC}
Rust
\u{95AC}
Go
\u95AC

Web

CSS
\0095AC
HtmlDecimal
閬
HtmlHexadecimal
閬
Url
%E9%96%AC

Code

MD5
56ee157157009e38a6a33941d1389f28
Sha1
d16dabc753882333a9634d0d5a8e58f9eaa93417
Base64
6Zas

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u95AC';
console.log(char);  // Output: 閬

Java:

char c = '\u95AC';
System.out.println(c);  // Output: 閬

JSON:

{"text": "\u95AC"}  // Value: 閬

Python:

char = '\u95AC'
print(char)  # Output: 閬

Perl:

my $char = "\x{95AC}";
print $char;  # Output: 閬

PHP:

$char = "\x{95AC}";
echo $char;  // Output: 閬

Ruby:

char = "\u{95AC}"
puts char  # Output: 閬

Rust:

let c = '\u{95AC}';
println!("{}", c);  // Output: 閬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0095AC";  /* Display: 閬 */
}

HTML Decimal:

<p>HTML decimal: &#38316;</p>  <!-- Display: 閬 -->

HTML Hexadecimal:

<p>HTML hex: &#x95AC;</p>  <!-- Display: 閬 -->

URL Encoding:

// 閬 URL encoding
https://unicodefinder.com/search.php?query=%E9%96%AC

Encodings

MD5:

56ee157157009e38a6a33941d1389f28

SHA1:

d16dabc753882333a9634d0d5a8e58f9eaa93417

Base64:

6Zas