Unicode Finder

"卡" U+5361(CJK UNIFIED IDEOGRAPH-5361)

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

Programming

C
\u5361
JavaScript
\u5361
Java
\u5361
Json
\u5361
Python
\u5361
Perl
\x{5361}
PHP
\x{5361}
Ruby
\u{5361}
Rust
\u{5361}
Go
\u5361

Web

CSS
\005361
HtmlDecimal
卡
HtmlHexadecimal
卡
Url
%E5%8D%A1

Code

MD5
d6838766685b945ba240e4c61f63b929
Sha1
9419fd04b79fda3317d8a7899e85ffba053664f0
Base64
5Y2h

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5361';
console.log(char);  // Output: 卡

Java:

char c = '\u5361';
System.out.println(c);  // Output: 卡

JSON:

{"text": "\u5361"}  // Value: 卡

Python:

char = '\u5361'
print(char)  # Output: 卡

Perl:

my $char = "\x{5361}";
print $char;  # Output: 卡

PHP:

$char = "\x{5361}";
echo $char;  // Output: 卡

Ruby:

char = "\u{5361}"
puts char  # Output: 卡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005361";  /* Display: 卡 */
}

HTML Decimal:

<p>HTML decimal: &#21345;</p>  <!-- Display: 卡 -->

HTML Hexadecimal:

<p>HTML hex: &#x5361;</p>  <!-- Display: 卡 -->

URL Encoding:

// 卡 URL encoding
https://unicodefinder.com/search.php?query=%E5%8D%A1

Encodings

MD5:

d6838766685b945ba240e4c61f63b929

SHA1:

9419fd04b79fda3317d8a7899e85ffba053664f0

Base64:

5Y2h