Unicode Finder

"阆" U+9606(CJK UNIFIED IDEOGRAPH-9606)

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

Programming

C
\u9606
JavaScript
\u9606
Java
\u9606
Json
\u9606
Python
\u9606
Perl
\x{9606}
PHP
\x{9606}
Ruby
\u{9606}
Rust
\u{9606}
Go
\u9606

Web

CSS
\009606
HtmlDecimal
阆
HtmlHexadecimal
阆
Url
%E9%98%86

Code

MD5
5f9e28e5f904b7092031ae0350ce44d8
Sha1
92c0cec1717d57e3b4f62bf80cfa53f2e554de76
Base64
6ZiG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9606';
console.log(char);  // Output: 阆

Java:

char c = '\u9606';
System.out.println(c);  // Output: 阆

JSON:

{"text": "\u9606"}  // Value: 阆

Python:

char = '\u9606'
print(char)  # Output: 阆

Perl:

my $char = "\x{9606}";
print $char;  # Output: 阆

PHP:

$char = "\x{9606}";
echo $char;  // Output: 阆

Ruby:

char = "\u{9606}"
puts char  # Output: 阆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009606";  /* Display: 阆 */
}

HTML Decimal:

<p>HTML decimal: &#38406;</p>  <!-- Display: 阆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9606;</p>  <!-- Display: 阆 -->

URL Encoding:

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

Encodings

MD5:

5f9e28e5f904b7092031ae0350ce44d8

SHA1:

92c0cec1717d57e3b4f62bf80cfa53f2e554de76

Base64:

6ZiG