Unicode Finder

"卅" U+5345(CJK UNIFIED IDEOGRAPH-5345)

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

Programming

C
\u5345
JavaScript
\u5345
Java
\u5345
Json
\u5345
Python
\u5345
Perl
\x{5345}
PHP
\x{5345}
Ruby
\u{5345}
Rust
\u{5345}
Go
\u5345

Web

CSS
\005345
HtmlDecimal
卅
HtmlHexadecimal
卅
Url
%E5%8D%85

Code

MD5
758219aabd6ed334986dbbee28fc65c0
Sha1
00b22c08c503768d6d4e753a1a7220e08e8009a3
Base64
5Y2F

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5345';
console.log(char);  // Output: 卅

Java:

char c = '\u5345';
System.out.println(c);  // Output: 卅

JSON:

{"text": "\u5345"}  // Value: 卅

Python:

char = '\u5345'
print(char)  # Output: 卅

Perl:

my $char = "\x{5345}";
print $char;  # Output: 卅

PHP:

$char = "\x{5345}";
echo $char;  // Output: 卅

Ruby:

char = "\u{5345}"
puts char  # Output: 卅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005345";  /* Display: 卅 */
}

HTML Decimal:

<p>HTML decimal: &#21317;</p>  <!-- Display: 卅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5345;</p>  <!-- Display: 卅 -->

URL Encoding:

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

Encodings

MD5:

758219aabd6ed334986dbbee28fc65c0

SHA1:

00b22c08c503768d6d4e753a1a7220e08e8009a3

Base64:

5Y2F