Unicode Finder

"閒" U+9592(CJK UNIFIED IDEOGRAPH-9592)

U+9592
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9592

Programming

C
\u9592
JavaScript
\u9592
Java
\u9592
Json
\u9592
Python
\u9592
Perl
\x{9592}
PHP
\x{9592}
Ruby
\u{9592}
Rust
\u{9592}
Go
\u9592

Web

CSS
\009592
HtmlDecimal
閒
HtmlHexadecimal
閒
Url
%E9%96%92

Code

MD5
96b3182a88b262ede3a87e55eb1585dc
Sha1
43329bdb5c2dd5198bad9f6733b4ce60b3f31ce7
Base64
6ZaS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9592';
console.log(char);  // Output: 閒

Java:

char c = '\u9592';
System.out.println(c);  // Output: 閒

JSON:

{"text": "\u9592"}  // Value: 閒

Python:

char = '\u9592'
print(char)  # Output: 閒

Perl:

my $char = "\x{9592}";
print $char;  # Output: 閒

PHP:

$char = "\x{9592}";
echo $char;  // Output: 閒

Ruby:

char = "\u{9592}"
puts char  # Output: 閒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009592";  /* Display: 閒 */
}

HTML Decimal:

<p>HTML decimal: &#38290;</p>  <!-- Display: 閒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9592;</p>  <!-- Display: 閒 -->

URL Encoding:

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

Encodings

MD5:

96b3182a88b262ede3a87e55eb1585dc

SHA1:

43329bdb5c2dd5198bad9f6733b4ce60b3f31ce7

Base64:

6ZaS