Unicode Finder

"匘" U+5318(CJK UNIFIED IDEOGRAPH-5318)

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

Programming

C
\u5318
JavaScript
\u5318
Java
\u5318
Json
\u5318
Python
\u5318
Perl
\x{5318}
PHP
\x{5318}
Ruby
\u{5318}
Rust
\u{5318}
Go
\u5318

Web

CSS
\005318
HtmlDecimal
匘
HtmlHexadecimal
匘
Url
%E5%8C%98

Code

MD5
ffcce08d8576c2ba57207a04685e39a1
Sha1
790f9d96f09013d0a49dea8b58170e5bc8259a3f
Base64
5YyY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5318';
console.log(char);  // Output: 匘

Java:

char c = '\u5318';
System.out.println(c);  // Output: 匘

JSON:

{"text": "\u5318"}  // Value: 匘

Python:

char = '\u5318'
print(char)  # Output: 匘

Perl:

my $char = "\x{5318}";
print $char;  # Output: 匘

PHP:

$char = "\x{5318}";
echo $char;  // Output: 匘

Ruby:

char = "\u{5318}"
puts char  # Output: 匘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005318";  /* Display: 匘 */
}

HTML Decimal:

<p>HTML decimal: &#21272;</p>  <!-- Display: 匘 -->

HTML Hexadecimal:

<p>HTML hex: &#x5318;</p>  <!-- Display: 匘 -->

URL Encoding:

// 匘 URL encoding
https://unicodefinder.com/search.php?query=%E5%8C%98

Encodings

MD5:

ffcce08d8576c2ba57207a04685e39a1

SHA1:

790f9d96f09013d0a49dea8b58170e5bc8259a3f

Base64:

5YyY