Unicode Finder

"闞" U+95DE(CJK UNIFIED IDEOGRAPH-95DE)

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

Programming

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

Web

CSS
\0095DE
HtmlDecimal
闞
HtmlHexadecimal
闞
Url
%E9%97%9E

Code

MD5
c4b6043420d55a3fc0314b70ccb4e526
Sha1
9eb1b952e787101825d67a095f0218e8d6aada24
Base64
6Zee

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95DE';
console.log(char);  // Output: 闞

Java:

char c = '\u95DE';
System.out.println(c);  // Output: 闞

JSON:

{"text": "\u95DE"}  // Value: 闞

Python:

char = '\u95DE'
print(char)  # Output: 闞

Perl:

my $char = "\x{95DE}";
print $char;  # Output: 闞

PHP:

$char = "\x{95DE}";
echo $char;  // Output: 闞

Ruby:

char = "\u{95DE}"
puts char  # Output: 闞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38366;</p>  <!-- Display: 闞 -->

HTML Hexadecimal:

<p>HTML hex: &#x95DE;</p>  <!-- Display: 闞 -->

URL Encoding:

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

Encodings

MD5:

c4b6043420d55a3fc0314b70ccb4e526

SHA1:

9eb1b952e787101825d67a095f0218e8d6aada24

Base64:

6Zee