Unicode Finder

"历" U+5386(CJK UNIFIED IDEOGRAPH-5386)

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

Programming

C
\u5386
JavaScript
\u5386
Java
\u5386
Json
\u5386
Python
\u5386
Perl
\x{5386}
PHP
\x{5386}
Ruby
\u{5386}
Rust
\u{5386}
Go
\u5386

Web

CSS
\005386
HtmlDecimal
历
HtmlHexadecimal
历
Url
%E5%8E%86

Code

MD5
a184f0e2a2dd7152be1d655eca497108
Sha1
5cf1eb8d3bc80cdec8f7a2cc061130f51dfd3429
Base64
5Y6G

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5386';
console.log(char);  // Output: 历

Java:

char c = '\u5386';
System.out.println(c);  // Output: 历

JSON:

{"text": "\u5386"}  // Value: 历

Python:

char = '\u5386'
print(char)  # Output: 历

Perl:

my $char = "\x{5386}";
print $char;  # Output: 历

PHP:

$char = "\x{5386}";
echo $char;  // Output: 历

Ruby:

char = "\u{5386}"
puts char  # Output: 历

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005386";  /* Display: 历 */
}

HTML Decimal:

<p>HTML decimal: &#21382;</p>  <!-- Display: 历 -->

HTML Hexadecimal:

<p>HTML hex: &#x5386;</p>  <!-- Display: 历 -->

URL Encoding:

// 历 URL encoding
https://unicodefinder.com/search.php?query=%E5%8E%86

Encodings

MD5:

a184f0e2a2dd7152be1d655eca497108

SHA1:

5cf1eb8d3bc80cdec8f7a2cc061130f51dfd3429

Base64:

5Y6G