Unicode Finder

"卸" U+5378(CJK UNIFIED IDEOGRAPH-5378)

U+5378
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5378

Programming

C
\u5378
JavaScript
\u5378
Java
\u5378
Json
\u5378
Python
\u5378
Perl
\x{5378}
PHP
\x{5378}
Ruby
\u{5378}
Rust
\u{5378}
Go
\u5378

Web

CSS
\005378
HtmlDecimal
卸
HtmlHexadecimal
卸
Url
%E5%8D%B8

Code

MD5
c3ee3f9f3eaa878d6f1cae837dd94679
Sha1
2f21e2ab1e1b988862a94c691dac766a0c3abbbe
Base64
5Y24

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5378';
console.log(char);  // Output: 卸

Java:

char c = '\u5378';
System.out.println(c);  // Output: 卸

JSON:

{"text": "\u5378"}  // Value: 卸

Python:

char = '\u5378'
print(char)  # Output: 卸

Perl:

my $char = "\x{5378}";
print $char;  # Output: 卸

PHP:

$char = "\x{5378}";
echo $char;  // Output: 卸

Ruby:

char = "\u{5378}"
puts char  # Output: 卸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005378";  /* Display: 卸 */
}

HTML Decimal:

<p>HTML decimal: &#21368;</p>  <!-- Display: 卸 -->

HTML Hexadecimal:

<p>HTML hex: &#x5378;</p>  <!-- Display: 卸 -->

URL Encoding:

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

Encodings

MD5:

c3ee3f9f3eaa878d6f1cae837dd94679

SHA1:

2f21e2ab1e1b988862a94c691dac766a0c3abbbe

Base64:

5Y24