Unicode Finder

"闱" U+95F1(CJK UNIFIED IDEOGRAPH-95F1)

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

Programming

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

Web

CSS
\0095F1
HtmlDecimal
闱
HtmlHexadecimal
闱
Url
%E9%97%B1

Code

MD5
ebdf2359a939c0fc4975ee2f5dca5825
Sha1
2d66a09fc75645b53d978a91daf606436becf110
Base64
6Zex

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95F1';
console.log(char);  // Output: 闱

Java:

char c = '\u95F1';
System.out.println(c);  // Output: 闱

JSON:

{"text": "\u95F1"}  // Value: 闱

Python:

char = '\u95F1'
print(char)  # Output: 闱

Perl:

my $char = "\x{95F1}";
print $char;  # Output: 闱

PHP:

$char = "\x{95F1}";
echo $char;  // Output: 闱

Ruby:

char = "\u{95F1}"
puts char  # Output: 闱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38385;</p>  <!-- Display: 闱 -->

HTML Hexadecimal:

<p>HTML hex: &#x95F1;</p>  <!-- Display: 闱 -->

URL Encoding:

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

Encodings

MD5:

ebdf2359a939c0fc4975ee2f5dca5825

SHA1:

2d66a09fc75645b53d978a91daf606436becf110

Base64:

6Zex