Unicode Finder

"闟" U+95DF(CJK UNIFIED IDEOGRAPH-95DF)

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

Programming

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

Web

CSS
\0095DF
HtmlDecimal
闟
HtmlHexadecimal
闟
Url
%E9%97%9F

Code

MD5
f9ecdfb338185dcb9c9e286883e901ee
Sha1
a1f57c73c831c079eaf17b5f7a6de99eba9b5d12
Base64
6Zef

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95DF';
console.log(char);  // Output: 闟

Java:

char c = '\u95DF';
System.out.println(c);  // Output: 闟

JSON:

{"text": "\u95DF"}  // Value: 闟

Python:

char = '\u95DF'
print(char)  # Output: 闟

Perl:

my $char = "\x{95DF}";
print $char;  # Output: 闟

PHP:

$char = "\x{95DF}";
echo $char;  // Output: 闟

Ruby:

char = "\u{95DF}"
puts char  # Output: 闟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38367;</p>  <!-- Display: 闟 -->

HTML Hexadecimal:

<p>HTML hex: &#x95DF;</p>  <!-- Display: 闟 -->

URL Encoding:

// 闟 URL encoding
https://unicodefinder.com/search.php?query=%E9%97%9F

Encodings

MD5:

f9ecdfb338185dcb9c9e286883e901ee

SHA1:

a1f57c73c831c079eaf17b5f7a6de99eba9b5d12

Base64:

6Zef