Unicode Finder

"卷" U+5377(CJK UNIFIED IDEOGRAPH-5377)

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

Programming

C
\u5377
JavaScript
\u5377
Java
\u5377
Json
\u5377
Python
\u5377
Perl
\x{5377}
PHP
\x{5377}
Ruby
\u{5377}
Rust
\u{5377}
Go
\u5377

Web

CSS
\005377
HtmlDecimal
卷
HtmlHexadecimal
卷
Url
%E5%8D%B7

Code

MD5
7088e18ac923d385adbf143d41783b06
Sha1
a7b8833d1268210fdd2e426a6764f142f8d01373
Base64
5Y23

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5377';
console.log(char);  // Output: 卷

Java:

char c = '\u5377';
System.out.println(c);  // Output: 卷

JSON:

{"text": "\u5377"}  // Value: 卷

Python:

char = '\u5377'
print(char)  # Output: 卷

Perl:

my $char = "\x{5377}";
print $char;  # Output: 卷

PHP:

$char = "\x{5377}";
echo $char;  // Output: 卷

Ruby:

char = "\u{5377}"
puts char  # Output: 卷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005377";  /* Display: 卷 */
}

HTML Decimal:

<p>HTML decimal: &#21367;</p>  <!-- Display: 卷 -->

HTML Hexadecimal:

<p>HTML hex: &#x5377;</p>  <!-- Display: 卷 -->

URL Encoding:

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

Encodings

MD5:

7088e18ac923d385adbf143d41783b06

SHA1:

a7b8833d1268210fdd2e426a6764f142f8d01373

Base64:

5Y23