Unicode Finder

"阁" U+9601(CJK UNIFIED IDEOGRAPH-9601)

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

Programming

C
\u9601
JavaScript
\u9601
Java
\u9601
Json
\u9601
Python
\u9601
Perl
\x{9601}
PHP
\x{9601}
Ruby
\u{9601}
Rust
\u{9601}
Go
\u9601

Web

CSS
\009601
HtmlDecimal
阁
HtmlHexadecimal
阁
Url
%E9%98%81

Code

MD5
178fde7c82fb2864127e74a340666431
Sha1
cf6c645d8fb3197c1810e8c4d5fed1b7402d549e
Base64
6ZiB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9601';
console.log(char);  // Output: 阁

Java:

char c = '\u9601';
System.out.println(c);  // Output: 阁

JSON:

{"text": "\u9601"}  // Value: 阁

Python:

char = '\u9601'
print(char)  # Output: 阁

Perl:

my $char = "\x{9601}";
print $char;  # Output: 阁

PHP:

$char = "\x{9601}";
echo $char;  // Output: 阁

Ruby:

char = "\u{9601}"
puts char  # Output: 阁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009601";  /* Display: 阁 */
}

HTML Decimal:

<p>HTML decimal: &#38401;</p>  <!-- Display: 阁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9601;</p>  <!-- Display: 阁 -->

URL Encoding:

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

Encodings

MD5:

178fde7c82fb2864127e74a340666431

SHA1:

cf6c645d8fb3197c1810e8c4d5fed1b7402d549e

Base64:

6ZiB