Unicode Finder

"阍" U+960D(CJK UNIFIED IDEOGRAPH-960D)

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

Programming

C
\u960D
JavaScript
\u960D
Java
\u960D
Json
\u960D
Python
\u960D
Perl
\x{960D}
PHP
\x{960D}
Ruby
\u{960D}
Rust
\u{960D}
Go
\u960D

Web

CSS
\00960D
HtmlDecimal
阍
HtmlHexadecimal
阍
Url
%E9%98%8D

Code

MD5
8291c7c1daade93e6bc78d119cf26b91
Sha1
435f51b23c0119237eb3e0967645136af70305cb
Base64
6ZiN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u960D';
console.log(char);  // Output: 阍

Java:

char c = '\u960D';
System.out.println(c);  // Output: 阍

JSON:

{"text": "\u960D"}  // Value: 阍

Python:

char = '\u960D'
print(char)  # Output: 阍

Perl:

my $char = "\x{960D}";
print $char;  # Output: 阍

PHP:

$char = "\x{960D}";
echo $char;  // Output: 阍

Ruby:

char = "\u{960D}"
puts char  # Output: 阍

Rust:

let c = '\u{960D}';
println!("{}", c);  // Output: 阍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00960D";  /* Display: 阍 */
}

HTML Decimal:

<p>HTML decimal: &#38413;</p>  <!-- Display: 阍 -->

HTML Hexadecimal:

<p>HTML hex: &#x960D;</p>  <!-- Display: 阍 -->

URL Encoding:

// 阍 URL encoding
https://unicodefinder.com/search.php?query=%E9%98%8D

Encodings

MD5:

8291c7c1daade93e6bc78d119cf26b91

SHA1:

435f51b23c0119237eb3e0967645136af70305cb

Base64:

6ZiN