Unicode Finder

"闉" U+95C9(CJK UNIFIED IDEOGRAPH-95C9)

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

Programming

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

Web

CSS
\0095C9
HtmlDecimal
闉
HtmlHexadecimal
闉
Url
%E9%97%89

Code

MD5
fd1be50df73eac0afcd6c371876ad86f
Sha1
27f8d81fc8f33ac1e00ded2d54c333919fbf93d3
Base64
6ZeJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95C9';
console.log(char);  // Output: 闉

Java:

char c = '\u95C9';
System.out.println(c);  // Output: 闉

JSON:

{"text": "\u95C9"}  // Value: 闉

Python:

char = '\u95C9'
print(char)  # Output: 闉

Perl:

my $char = "\x{95C9}";
print $char;  # Output: 闉

PHP:

$char = "\x{95C9}";
echo $char;  // Output: 闉

Ruby:

char = "\u{95C9}"
puts char  # Output: 闉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38345;</p>  <!-- Display: 闉 -->

HTML Hexadecimal:

<p>HTML hex: &#x95C9;</p>  <!-- Display: 闉 -->

URL Encoding:

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

Encodings

MD5:

fd1be50df73eac0afcd6c371876ad86f

SHA1:

27f8d81fc8f33ac1e00ded2d54c333919fbf93d3

Base64:

6ZeJ