Unicode Finder

"閇" U+9587(CJK UNIFIED IDEOGRAPH-9587)

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

Programming

C
\u9587
JavaScript
\u9587
Java
\u9587
Json
\u9587
Python
\u9587
Perl
\x{9587}
PHP
\x{9587}
Ruby
\u{9587}
Rust
\u{9587}
Go
\u9587

Web

CSS
\009587
HtmlDecimal
閇
HtmlHexadecimal
閇
Url
%E9%96%87

Code

MD5
0f620f83967c93e5ef9a1dd394465810
Sha1
cbea0794b2d35d5a33b9a9e1aec80e23ead59d84
Base64
6ZaH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9587';
console.log(char);  // Output: 閇

Java:

char c = '\u9587';
System.out.println(c);  // Output: 閇

JSON:

{"text": "\u9587"}  // Value: 閇

Python:

char = '\u9587'
print(char)  # Output: 閇

Perl:

my $char = "\x{9587}";
print $char;  # Output: 閇

PHP:

$char = "\x{9587}";
echo $char;  // Output: 閇

Ruby:

char = "\u{9587}"
puts char  # Output: 閇

Rust:

let c = '\u{9587}';
println!("{}", c);  // Output: 閇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009587";  /* Display: 閇 */
}

HTML Decimal:

<p>HTML decimal: &#38279;</p>  <!-- Display: 閇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9587;</p>  <!-- Display: 閇 -->

URL Encoding:

// 閇 URL encoding
https://unicodefinder.com/search.php?query=%E9%96%87

Encodings

MD5:

0f620f83967c93e5ef9a1dd394465810

SHA1:

cbea0794b2d35d5a33b9a9e1aec80e23ead59d84

Base64:

6ZaH