Unicode Finder

"領" U+9818(CJK UNIFIED IDEOGRAPH-9818)

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

Programming

C
\u9818
JavaScript
\u9818
Java
\u9818
Json
\u9818
Python
\u9818
Perl
\x{9818}
PHP
\x{9818}
Ruby
\u{9818}
Rust
\u{9818}
Go
\u9818

Web

CSS
\009818
HtmlDecimal
領
HtmlHexadecimal
領
Url
%E9%A0%98

Code

MD5
ca0bc0ee2ec80a41d0d775d86c650cd4
Sha1
734208cda945b343d1c239f54065afffa40c313b
Base64
6aCY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9818';
console.log(char);  // Output: 領

Java:

char c = '\u9818';
System.out.println(c);  // Output: 領

JSON:

{"text": "\u9818"}  // Value: 領

Python:

char = '\u9818'
print(char)  # Output: 領

Perl:

my $char = "\x{9818}";
print $char;  # Output: 領

PHP:

$char = "\x{9818}";
echo $char;  // Output: 領

Ruby:

char = "\u{9818}"
puts char  # Output: 領

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009818";  /* Display: 領 */
}

HTML Decimal:

<p>HTML decimal: &#38936;</p>  <!-- Display: 領 -->

HTML Hexadecimal:

<p>HTML hex: &#x9818;</p>  <!-- Display: 領 -->

URL Encoding:

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

Encodings

MD5:

ca0bc0ee2ec80a41d0d775d86c650cd4

SHA1:

734208cda945b343d1c239f54065afffa40c313b

Base64:

6aCY