Unicode Finder

"垆" U+5786(CJK UNIFIED IDEOGRAPH-5786)

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

Programming

C
\u5786
JavaScript
\u5786
Java
\u5786
Json
\u5786
Python
\u5786
Perl
\x{5786}
PHP
\x{5786}
Ruby
\u{5786}
Rust
\u{5786}
Go
\u5786

Web

CSS
\005786
HtmlDecimal
垆
HtmlHexadecimal
垆
Url
%E5%9E%86

Code

MD5
d8fa65ac0bd1debfdb4fa87364c68e9c
Sha1
ad917ffc6dd94c4d8477491ea885f6b4f0714b55
Base64
5Z6G

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5786';
console.log(char);  // Output: 垆

Java:

char c = '\u5786';
System.out.println(c);  // Output: 垆

JSON:

{"text": "\u5786"}  // Value: 垆

Python:

char = '\u5786'
print(char)  # Output: 垆

Perl:

my $char = "\x{5786}";
print $char;  # Output: 垆

PHP:

$char = "\x{5786}";
echo $char;  // Output: 垆

Ruby:

char = "\u{5786}"
puts char  # Output: 垆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005786";  /* Display: 垆 */
}

HTML Decimal:

<p>HTML decimal: &#22406;</p>  <!-- Display: 垆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5786;</p>  <!-- Display: 垆 -->

URL Encoding:

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

Encodings

MD5:

d8fa65ac0bd1debfdb4fa87364c68e9c

SHA1:

ad917ffc6dd94c4d8477491ea885f6b4f0714b55

Base64:

5Z6G