Unicode Finder

"闗" U+95D7(CJK UNIFIED IDEOGRAPH-95D7)

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

Programming

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

Web

CSS
\0095D7
HtmlDecimal
闗
HtmlHexadecimal
闗
Url
%E9%97%97

Code

MD5
0953075ef1428477d7849c154b209cb3
Sha1
fc6061f4d1dfdd89cd152775e9ebf0129e33b072
Base64
6ZeX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95D7';
console.log(char);  // Output: 闗

Java:

char c = '\u95D7';
System.out.println(c);  // Output: 闗

JSON:

{"text": "\u95D7"}  // Value: 闗

Python:

char = '\u95D7'
print(char)  # Output: 闗

Perl:

my $char = "\x{95D7}";
print $char;  # Output: 闗

PHP:

$char = "\x{95D7}";
echo $char;  // Output: 闗

Ruby:

char = "\u{95D7}"
puts char  # Output: 闗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38359;</p>  <!-- Display: 闗 -->

HTML Hexadecimal:

<p>HTML hex: &#x95D7;</p>  <!-- Display: 闗 -->

URL Encoding:

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

Encodings

MD5:

0953075ef1428477d7849c154b209cb3

SHA1:

fc6061f4d1dfdd89cd152775e9ebf0129e33b072

Base64:

6ZeX