Unicode Finder

"阀" U+9600(CJK UNIFIED IDEOGRAPH-9600)

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

Programming

C
\u9600
JavaScript
\u9600
Java
\u9600
Json
\u9600
Python
\u9600
Perl
\x{9600}
PHP
\x{9600}
Ruby
\u{9600}
Rust
\u{9600}
Go
\u9600

Web

CSS
\009600
HtmlDecimal
阀
HtmlHexadecimal
阀
Url
%E9%98%80

Code

MD5
a31fa9031dfc53b0be39ae0fcd9a8e12
Sha1
cb71b40e68a0d518071212612656c1a1adfe17f1
Base64
6ZiA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9600';
console.log(char);  // Output: 阀

Java:

char c = '\u9600';
System.out.println(c);  // Output: 阀

JSON:

{"text": "\u9600"}  // Value: 阀

Python:

char = '\u9600'
print(char)  # Output: 阀

Perl:

my $char = "\x{9600}";
print $char;  # Output: 阀

PHP:

$char = "\x{9600}";
echo $char;  // Output: 阀

Ruby:

char = "\u{9600}"
puts char  # Output: 阀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009600";  /* Display: 阀 */
}

HTML Decimal:

<p>HTML decimal: &#38400;</p>  <!-- Display: 阀 -->

HTML Hexadecimal:

<p>HTML hex: &#x9600;</p>  <!-- Display: 阀 -->

URL Encoding:

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

Encodings

MD5:

a31fa9031dfc53b0be39ae0fcd9a8e12

SHA1:

cb71b40e68a0d518071212612656c1a1adfe17f1

Base64:

6ZiA