Unicode Finder

"刘" U+5218(CJK UNIFIED IDEOGRAPH-5218)

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

Programming

C
\u5218
JavaScript
\u5218
Java
\u5218
Json
\u5218
Python
\u5218
Perl
\x{5218}
PHP
\x{5218}
Ruby
\u{5218}
Rust
\u{5218}
Go
\u5218

Web

CSS
\005218
HtmlDecimal
刘
HtmlHexadecimal
刘
Url
%E5%88%98

Code

MD5
7f1016477c414071219411a7c893227c
Sha1
9316369fc103d9f43b88282546ac2accd5a34427
Base64
5YiY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5218';
console.log(char);  // Output: 刘

Java:

char c = '\u5218';
System.out.println(c);  // Output: 刘

JSON:

{"text": "\u5218"}  // Value: 刘

Python:

char = '\u5218'
print(char)  # Output: 刘

Perl:

my $char = "\x{5218}";
print $char;  # Output: 刘

PHP:

$char = "\x{5218}";
echo $char;  // Output: 刘

Ruby:

char = "\u{5218}"
puts char  # Output: 刘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005218";  /* Display: 刘 */
}

HTML Decimal:

<p>HTML decimal: &#21016;</p>  <!-- Display: 刘 -->

HTML Hexadecimal:

<p>HTML hex: &#x5218;</p>  <!-- Display: 刘 -->

URL Encoding:

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

Encodings

MD5:

7f1016477c414071219411a7c893227c

SHA1:

9316369fc103d9f43b88282546ac2accd5a34427

Base64:

5YiY