Unicode Finder

"阇" U+9607(CJK UNIFIED IDEOGRAPH-9607)

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

Programming

C
\u9607
JavaScript
\u9607
Java
\u9607
Json
\u9607
Python
\u9607
Perl
\x{9607}
PHP
\x{9607}
Ruby
\u{9607}
Rust
\u{9607}
Go
\u9607

Web

CSS
\009607
HtmlDecimal
阇
HtmlHexadecimal
阇
Url
%E9%98%87

Code

MD5
31381adafcfa75ccdf5734eaa021fb29
Sha1
86b7078781f423bec01995731485d464e4c77a84
Base64
6ZiH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9607';
console.log(char);  // Output: 阇

Java:

char c = '\u9607';
System.out.println(c);  // Output: 阇

JSON:

{"text": "\u9607"}  // Value: 阇

Python:

char = '\u9607'
print(char)  # Output: 阇

Perl:

my $char = "\x{9607}";
print $char;  # Output: 阇

PHP:

$char = "\x{9607}";
echo $char;  // Output: 阇

Ruby:

char = "\u{9607}"
puts char  # Output: 阇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009607";  /* Display: 阇 */
}

HTML Decimal:

<p>HTML decimal: &#38407;</p>  <!-- Display: 阇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9607;</p>  <!-- Display: 阇 -->

URL Encoding:

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

Encodings

MD5:

31381adafcfa75ccdf5734eaa021fb29

SHA1:

86b7078781f423bec01995731485d464e4c77a84

Base64:

6ZiH