Unicode Finder

"闔" U+95D4(CJK UNIFIED IDEOGRAPH-95D4)

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

Programming

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

Web

CSS
\0095D4
HtmlDecimal
闔
HtmlHexadecimal
闔
Url
%E9%97%94

Code

MD5
dc4a7cb1a9e006340ced2538daaa93ef
Sha1
7624346515f3443f06fc695bde1c06720c30b894
Base64
6ZeU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95D4';
console.log(char);  // Output: 闔

Java:

char c = '\u95D4';
System.out.println(c);  // Output: 闔

JSON:

{"text": "\u95D4"}  // Value: 闔

Python:

char = '\u95D4'
print(char)  # Output: 闔

Perl:

my $char = "\x{95D4}";
print $char;  # Output: 闔

PHP:

$char = "\x{95D4}";
echo $char;  // Output: 闔

Ruby:

char = "\u{95D4}"
puts char  # Output: 闔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38356;</p>  <!-- Display: 闔 -->

HTML Hexadecimal:

<p>HTML hex: &#x95D4;</p>  <!-- Display: 闔 -->

URL Encoding:

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

Encodings

MD5:

dc4a7cb1a9e006340ced2538daaa93ef

SHA1:

7624346515f3443f06fc695bde1c06720c30b894

Base64:

6ZeU