Unicode Finder

"阉" U+9609(CJK UNIFIED IDEOGRAPH-9609)

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

Programming

C
\u9609
JavaScript
\u9609
Java
\u9609
Json
\u9609
Python
\u9609
Perl
\x{9609}
PHP
\x{9609}
Ruby
\u{9609}
Rust
\u{9609}
Go
\u9609

Web

CSS
\009609
HtmlDecimal
阉
HtmlHexadecimal
阉
Url
%E9%98%89

Code

MD5
9fef5fad25288ba29ae23c3c71ef4476
Sha1
9973697dd9e74586a45a7894ba6c81a512fcd763
Base64
6ZiJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9609';
console.log(char);  // Output: 阉

Java:

char c = '\u9609';
System.out.println(c);  // Output: 阉

JSON:

{"text": "\u9609"}  // Value: 阉

Python:

char = '\u9609'
print(char)  # Output: 阉

Perl:

my $char = "\x{9609}";
print $char;  # Output: 阉

PHP:

$char = "\x{9609}";
echo $char;  // Output: 阉

Ruby:

char = "\u{9609}"
puts char  # Output: 阉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009609";  /* Display: 阉 */
}

HTML Decimal:

<p>HTML decimal: &#38409;</p>  <!-- Display: 阉 -->

HTML Hexadecimal:

<p>HTML hex: &#x9609;</p>  <!-- Display: 阉 -->

URL Encoding:

// 阉 URL encoding
https://unicodefinder.com/search.php?query=%E9%98%89

Encodings

MD5:

9fef5fad25288ba29ae23c3c71ef4476

SHA1:

9973697dd9e74586a45a7894ba6c81a512fcd763

Base64:

6ZiJ