Unicode Finder

"閔" U+9594(CJK UNIFIED IDEOGRAPH-9594)

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

Programming

C
\u9594
JavaScript
\u9594
Java
\u9594
Json
\u9594
Python
\u9594
Perl
\x{9594}
PHP
\x{9594}
Ruby
\u{9594}
Rust
\u{9594}
Go
\u9594

Web

CSS
\009594
HtmlDecimal
閔
HtmlHexadecimal
閔
Url
%E9%96%94

Code

MD5
9b2fe71b3ca525db8c0d330ec7d3d757
Sha1
15005924f0d9aac4402da1fccb6498147d171580
Base64
6ZaU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9594';
console.log(char);  // Output: 閔

Java:

char c = '\u9594';
System.out.println(c);  // Output: 閔

JSON:

{"text": "\u9594"}  // Value: 閔

Python:

char = '\u9594'
print(char)  # Output: 閔

Perl:

my $char = "\x{9594}";
print $char;  # Output: 閔

PHP:

$char = "\x{9594}";
echo $char;  // Output: 閔

Ruby:

char = "\u{9594}"
puts char  # Output: 閔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009594";  /* Display: 閔 */
}

HTML Decimal:

<p>HTML decimal: &#38292;</p>  <!-- Display: 閔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9594;</p>  <!-- Display: 閔 -->

URL Encoding:

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

Encodings

MD5:

9b2fe71b3ca525db8c0d330ec7d3d757

SHA1:

15005924f0d9aac4402da1fccb6498147d171580

Base64:

6ZaU