Unicode Finder

"凋" U+51CB(CJK UNIFIED IDEOGRAPH-51CB)

U+51CB
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-51CB

Programming

C
\u51CB
JavaScript
\u51CB
Java
\u51CB
Json
\u51CB
Python
\u51CB
Perl
\x{51CB}
PHP
\x{51CB}
Ruby
\u{51CB}
Rust
\u{51CB}
Go
\u51CB

Web

CSS
\0051CB
HtmlDecimal
凋
HtmlHexadecimal
凋
Url
%E5%87%8B

Code

MD5
0c17e58e92455cc92c5faf6f2af50135
Sha1
69de55688c3ef223c54d7102ce97dbb80fb593e1
Base64
5YeL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u51CB';
console.log(char);  // Output: 凋

Java:

char c = '\u51CB';
System.out.println(c);  // Output: 凋

JSON:

{"text": "\u51CB"}  // Value: 凋

Python:

char = '\u51CB'
print(char)  # Output: 凋

Perl:

my $char = "\x{51CB}";
print $char;  # Output: 凋

PHP:

$char = "\x{51CB}";
echo $char;  // Output: 凋

Ruby:

char = "\u{51CB}"
puts char  # Output: 凋

Rust:

let c = '\u{51CB}';
println!("{}", c);  // Output: 凋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0051CB";  /* Display: 凋 */
}

HTML Decimal:

<p>HTML decimal: &#20939;</p>  <!-- Display: 凋 -->

HTML Hexadecimal:

<p>HTML hex: &#x51CB;</p>  <!-- Display: 凋 -->

URL Encoding:

// 凋 URL encoding
https://unicodefinder.com/search.php?query=%E5%87%8B

Encodings

MD5:

0c17e58e92455cc92c5faf6f2af50135

SHA1:

69de55688c3ef223c54d7102ce97dbb80fb593e1

Base64:

5YeL