Unicode Finder

"闄" U+95C4(CJK UNIFIED IDEOGRAPH-95C4)

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

Programming

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

Web

CSS
\0095C4
HtmlDecimal
闄
HtmlHexadecimal
闄
Url
%E9%97%84

Code

MD5
92b974b7e071d5d3400c31e6731b8860
Sha1
2ab4ded2c8e78d09931b93ff5dd50fc42272208a
Base64
6ZeE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95C4';
console.log(char);  // Output: 闄

Java:

char c = '\u95C4';
System.out.println(c);  // Output: 闄

JSON:

{"text": "\u95C4"}  // Value: 闄

Python:

char = '\u95C4'
print(char)  # Output: 闄

Perl:

my $char = "\x{95C4}";
print $char;  # Output: 闄

PHP:

$char = "\x{95C4}";
echo $char;  // Output: 闄

Ruby:

char = "\u{95C4}"
puts char  # Output: 闄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38340;</p>  <!-- Display: 闄 -->

HTML Hexadecimal:

<p>HTML hex: &#x95C4;</p>  <!-- Display: 闄 -->

URL Encoding:

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

Encodings

MD5:

92b974b7e071d5d3400c31e6731b8860

SHA1:

2ab4ded2c8e78d09931b93ff5dd50fc42272208a

Base64:

6ZeE