Unicode Finder

"闅" U+95C5(CJK UNIFIED IDEOGRAPH-95C5)

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

Programming

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

Web

CSS
\0095C5
HtmlDecimal
闅
HtmlHexadecimal
闅
Url
%E9%97%85

Code

MD5
3881f6ef260b53c0e053722cb919c59f
Sha1
bfd3c0eec6872b58613b65c02fc2d7792921349f
Base64
6ZeF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95C5';
console.log(char);  // Output: 闅

Java:

char c = '\u95C5';
System.out.println(c);  // Output: 闅

JSON:

{"text": "\u95C5"}  // Value: 闅

Python:

char = '\u95C5'
print(char)  # Output: 闅

Perl:

my $char = "\x{95C5}";
print $char;  # Output: 闅

PHP:

$char = "\x{95C5}";
echo $char;  // Output: 闅

Ruby:

char = "\u{95C5}"
puts char  # Output: 闅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38341;</p>  <!-- Display: 闅 -->

HTML Hexadecimal:

<p>HTML hex: &#x95C5;</p>  <!-- Display: 闅 -->

URL Encoding:

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

Encodings

MD5:

3881f6ef260b53c0e053722cb919c59f

SHA1:

bfd3c0eec6872b58613b65c02fc2d7792921349f

Base64:

6ZeF