Unicode Finder

"閯" U+95AF(CJK UNIFIED IDEOGRAPH-95AF)

U+95AF
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-95AF

Programming

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

Web

CSS
\0095AF
HtmlDecimal
閯
HtmlHexadecimal
閯
Url
%E9%96%AF

Code

MD5
aa1711df5854f2cf5edf6aa857aa1b8a
Sha1
bcc6e90c6b963926724b087f148c5654dc04ff26
Base64
6Zav

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95AF';
console.log(char);  // Output: 閯

Java:

char c = '\u95AF';
System.out.println(c);  // Output: 閯

JSON:

{"text": "\u95AF"}  // Value: 閯

Python:

char = '\u95AF'
print(char)  # Output: 閯

Perl:

my $char = "\x{95AF}";
print $char;  # Output: 閯

PHP:

$char = "\x{95AF}";
echo $char;  // Output: 閯

Ruby:

char = "\u{95AF}"
puts char  # Output: 閯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38319;</p>  <!-- Display: 閯 -->

HTML Hexadecimal:

<p>HTML hex: &#x95AF;</p>  <!-- Display: 閯 -->

URL Encoding:

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

Encodings

MD5:

aa1711df5854f2cf5edf6aa857aa1b8a

SHA1:

bcc6e90c6b963926724b087f148c5654dc04ff26

Base64:

6Zav