Unicode Finder

"閅" U+9585(CJK UNIFIED IDEOGRAPH-9585)

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

Programming

C
\u9585
JavaScript
\u9585
Java
\u9585
Json
\u9585
Python
\u9585
Perl
\x{9585}
PHP
\x{9585}
Ruby
\u{9585}
Rust
\u{9585}
Go
\u9585

Web

CSS
\009585
HtmlDecimal
閅
HtmlHexadecimal
閅
Url
%E9%96%85

Code

MD5
b811ebc48171e3489b0cf87b2e1f393f
Sha1
6c447ed200099e7d8165318a7ea7f76482e918d0
Base64
6ZaF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9585';
console.log(char);  // Output: 閅

Java:

char c = '\u9585';
System.out.println(c);  // Output: 閅

JSON:

{"text": "\u9585"}  // Value: 閅

Python:

char = '\u9585'
print(char)  # Output: 閅

Perl:

my $char = "\x{9585}";
print $char;  # Output: 閅

PHP:

$char = "\x{9585}";
echo $char;  // Output: 閅

Ruby:

char = "\u{9585}"
puts char  # Output: 閅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009585";  /* Display: 閅 */
}

HTML Decimal:

<p>HTML decimal: &#38277;</p>  <!-- Display: 閅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9585;</p>  <!-- Display: 閅 -->

URL Encoding:

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

Encodings

MD5:

b811ebc48171e3489b0cf87b2e1f393f

SHA1:

6c447ed200099e7d8165318a7ea7f76482e918d0

Base64:

6ZaF