Unicode Finder

"门" U+95E8(CJK UNIFIED IDEOGRAPH-95E8)

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

Programming

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

Web

CSS
\0095E8
HtmlDecimal
门
HtmlHexadecimal
门
Url
%E9%97%A8

Code

MD5
a4960087a90ffadf6aed1ce2a7894167
Sha1
57b3e135628504bdc47a2f46ec4426b82d10ed5b
Base64
6Zeo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95E8';
console.log(char);  // Output: 门

Java:

char c = '\u95E8';
System.out.println(c);  // Output: 门

JSON:

{"text": "\u95E8"}  // Value: 门

Python:

char = '\u95E8'
print(char)  # Output: 门

Perl:

my $char = "\x{95E8}";
print $char;  # Output: 门

PHP:

$char = "\x{95E8}";
echo $char;  // Output: 门

Ruby:

char = "\u{95E8}"
puts char  # Output: 门

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38376;</p>  <!-- Display: 门 -->

HTML Hexadecimal:

<p>HTML hex: &#x95E8;</p>  <!-- Display: 门 -->

URL Encoding:

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

Encodings

MD5:

a4960087a90ffadf6aed1ce2a7894167

SHA1:

57b3e135628504bdc47a2f46ec4426b82d10ed5b

Base64:

6Zeo