Unicode Finder

"卨" U+5368(CJK UNIFIED IDEOGRAPH-5368)

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

Programming

C
\u5368
JavaScript
\u5368
Java
\u5368
Json
\u5368
Python
\u5368
Perl
\x{5368}
PHP
\x{5368}
Ruby
\u{5368}
Rust
\u{5368}
Go
\u5368

Web

CSS
\005368
HtmlDecimal
卨
HtmlHexadecimal
卨
Url
%E5%8D%A8

Code

MD5
04f8356a59ef2214731e726892b14ab0
Sha1
62414e15ad694605e39811c4239a90b860b67aae
Base64
5Y2o

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5368';
console.log(char);  // Output: 卨

Java:

char c = '\u5368';
System.out.println(c);  // Output: 卨

JSON:

{"text": "\u5368"}  // Value: 卨

Python:

char = '\u5368'
print(char)  # Output: 卨

Perl:

my $char = "\x{5368}";
print $char;  # Output: 卨

PHP:

$char = "\x{5368}";
echo $char;  // Output: 卨

Ruby:

char = "\u{5368}"
puts char  # Output: 卨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005368";  /* Display: 卨 */
}

HTML Decimal:

<p>HTML decimal: &#21352;</p>  <!-- Display: 卨 -->

HTML Hexadecimal:

<p>HTML hex: &#x5368;</p>  <!-- Display: 卨 -->

URL Encoding:

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

Encodings

MD5:

04f8356a59ef2214731e726892b14ab0

SHA1:

62414e15ad694605e39811c4239a90b860b67aae

Base64:

5Y2o