Unicode Finder

"卓" U+5353(CJK UNIFIED IDEOGRAPH-5353)

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

Programming

C
\u5353
JavaScript
\u5353
Java
\u5353
Json
\u5353
Python
\u5353
Perl
\x{5353}
PHP
\x{5353}
Ruby
\u{5353}
Rust
\u{5353}
Go
\u5353

Web

CSS
\005353
HtmlDecimal
卓
HtmlHexadecimal
卓
Url
%E5%8D%93

Code

MD5
f93f58cecf908102df165f181c84eeef
Sha1
04a215f0461ff546cd612da5559d7a1d651faa2d
Base64
5Y2T

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5353';
console.log(char);  // Output: 卓

Java:

char c = '\u5353';
System.out.println(c);  // Output: 卓

JSON:

{"text": "\u5353"}  // Value: 卓

Python:

char = '\u5353'
print(char)  # Output: 卓

Perl:

my $char = "\x{5353}";
print $char;  # Output: 卓

PHP:

$char = "\x{5353}";
echo $char;  // Output: 卓

Ruby:

char = "\u{5353}"
puts char  # Output: 卓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005353";  /* Display: 卓 */
}

HTML Decimal:

<p>HTML decimal: &#21331;</p>  <!-- Display: 卓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5353;</p>  <!-- Display: 卓 -->

URL Encoding:

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

Encodings

MD5:

f93f58cecf908102df165f181c84eeef

SHA1:

04a215f0461ff546cd612da5559d7a1d651faa2d

Base64:

5Y2T