Unicode Finder

"閿" U+95BF(CJK UNIFIED IDEOGRAPH-95BF)

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

Programming

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

Web

CSS
\0095BF
HtmlDecimal
閿
HtmlHexadecimal
閿
Url
%E9%96%BF

Code

MD5
a4b083594a05f634621c9589308da4ed
Sha1
c651234d654edf7a178b99c6e778ca83e5fd937f
Base64
6Za/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95BF';
console.log(char);  // Output: 閿

Java:

char c = '\u95BF';
System.out.println(c);  // Output: 閿

JSON:

{"text": "\u95BF"}  // Value: 閿

Python:

char = '\u95BF'
print(char)  # Output: 閿

Perl:

my $char = "\x{95BF}";
print $char;  # Output: 閿

PHP:

$char = "\x{95BF}";
echo $char;  // Output: 閿

Ruby:

char = "\u{95BF}"
puts char  # Output: 閿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38335;</p>  <!-- Display: 閿 -->

HTML Hexadecimal:

<p>HTML hex: &#x95BF;</p>  <!-- Display: 閿 -->

URL Encoding:

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

Encodings

MD5:

a4b083594a05f634621c9589308da4ed

SHA1:

c651234d654edf7a178b99c6e778ca83e5fd937f

Base64:

6Za/