Unicode Finder

"首" U+9996(CJK UNIFIED IDEOGRAPH-9996)

U+9996
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9996

Programming

C
\u9996
JavaScript
\u9996
Java
\u9996
Json
\u9996
Python
\u9996
Perl
\x{9996}
PHP
\x{9996}
Ruby
\u{9996}
Rust
\u{9996}
Go
\u9996

Web

CSS
\009996
HtmlDecimal
首
HtmlHexadecimal
首
Url
%E9%A6%96

Code

MD5
ef67981a2bbecddd668d9e960790912f
Sha1
fe7df3634ec6fb3a59ec41d9ba7aff7fa1fd8109
Base64
6aaW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9996';
console.log(char);  // Output: 首

Java:

char c = '\u9996';
System.out.println(c);  // Output: 首

JSON:

{"text": "\u9996"}  // Value: 首

Python:

char = '\u9996'
print(char)  # Output: 首

Perl:

my $char = "\x{9996}";
print $char;  # Output: 首

PHP:

$char = "\x{9996}";
echo $char;  // Output: 首

Ruby:

char = "\u{9996}"
puts char  # Output: 首

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009996";  /* Display: 首 */
}

HTML Decimal:

<p>HTML decimal: &#39318;</p>  <!-- Display: 首 -->

HTML Hexadecimal:

<p>HTML hex: &#x9996;</p>  <!-- Display: 首 -->

URL Encoding:

// 首 URL encoding
https://unicodefinder.com/search.php?query=%E9%A6%96

Encodings

MD5:

ef67981a2bbecddd668d9e960790912f

SHA1:

fe7df3634ec6fb3a59ec41d9ba7aff7fa1fd8109

Base64:

6aaW