Unicode Finder

"隆" U+9686(CJK UNIFIED IDEOGRAPH-9686)

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

Programming

C
\u9686
JavaScript
\u9686
Java
\u9686
Json
\u9686
Python
\u9686
Perl
\x{9686}
PHP
\x{9686}
Ruby
\u{9686}
Rust
\u{9686}
Go
\u9686

Web

CSS
\009686
HtmlDecimal
隆
HtmlHexadecimal
隆
Url
%E9%9A%86

Code

MD5
b04c767d1e52c4238c598b8196d439b5
Sha1
01ce5228770f746b2ab2498e334c1f09da8c2dd8
Base64
6ZqG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9686';
console.log(char);  // Output: 隆

Java:

char c = '\u9686';
System.out.println(c);  // Output: 隆

JSON:

{"text": "\u9686"}  // Value: 隆

Python:

char = '\u9686'
print(char)  # Output: 隆

Perl:

my $char = "\x{9686}";
print $char;  # Output: 隆

PHP:

$char = "\x{9686}";
echo $char;  // Output: 隆

Ruby:

char = "\u{9686}"
puts char  # Output: 隆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009686";  /* Display: 隆 */
}

HTML Decimal:

<p>HTML decimal: &#38534;</p>  <!-- Display: 隆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9686;</p>  <!-- Display: 隆 -->

URL Encoding:

// 隆 URL encoding
https://unicodefinder.com/search.php?query=%E9%9A%86

Encodings

MD5:

b04c767d1e52c4238c598b8196d439b5

SHA1:

01ce5228770f746b2ab2498e334c1f09da8c2dd8

Base64:

6ZqG