Unicode Finder

"列" U+5217(CJK UNIFIED IDEOGRAPH-5217)

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

Programming

C
\u5217
JavaScript
\u5217
Java
\u5217
Json
\u5217
Python
\u5217
Perl
\x{5217}
PHP
\x{5217}
Ruby
\u{5217}
Rust
\u{5217}
Go
\u5217

Web

CSS
\005217
HtmlDecimal
列
HtmlHexadecimal
列
Url
%E5%88%97

Code

MD5
cb2f68c9c24e85d21e6b090b6e5657d8
Sha1
ad3ee64830f4fa858a98c53c91b05878f4b077b3
Base64
5YiX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5217';
console.log(char);  // Output: 列

Java:

char c = '\u5217';
System.out.println(c);  // Output: 列

JSON:

{"text": "\u5217"}  // Value: 列

Python:

char = '\u5217'
print(char)  # Output: 列

Perl:

my $char = "\x{5217}";
print $char;  # Output: 列

PHP:

$char = "\x{5217}";
echo $char;  // Output: 列

Ruby:

char = "\u{5217}"
puts char  # Output: 列

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005217";  /* Display: 列 */
}

HTML Decimal:

<p>HTML decimal: &#21015;</p>  <!-- Display: 列 -->

HTML Hexadecimal:

<p>HTML hex: &#x5217;</p>  <!-- Display: 列 -->

URL Encoding:

// 列 URL encoding
https://unicodefinder.com/search.php?query=%E5%88%97

Encodings

MD5:

cb2f68c9c24e85d21e6b090b6e5657d8

SHA1:

ad3ee64830f4fa858a98c53c91b05878f4b077b3

Base64:

5YiX