Unicode Finder

"匔" U+5314(CJK UNIFIED IDEOGRAPH-5314)

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

Programming

C
\u5314
JavaScript
\u5314
Java
\u5314
Json
\u5314
Python
\u5314
Perl
\x{5314}
PHP
\x{5314}
Ruby
\u{5314}
Rust
\u{5314}
Go
\u5314

Web

CSS
\005314
HtmlDecimal
匔
HtmlHexadecimal
匔
Url
%E5%8C%94

Code

MD5
1c08cab02613f1d5f2c845d7451a1867
Sha1
81b1628d45b1e2eae788bca2bc58314586e683e2
Base64
5YyU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5314';
console.log(char);  // Output: 匔

Java:

char c = '\u5314';
System.out.println(c);  // Output: 匔

JSON:

{"text": "\u5314"}  // Value: 匔

Python:

char = '\u5314'
print(char)  # Output: 匔

Perl:

my $char = "\x{5314}";
print $char;  # Output: 匔

PHP:

$char = "\x{5314}";
echo $char;  // Output: 匔

Ruby:

char = "\u{5314}"
puts char  # Output: 匔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005314";  /* Display: 匔 */
}

HTML Decimal:

<p>HTML decimal: &#21268;</p>  <!-- Display: 匔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5314;</p>  <!-- Display: 匔 -->

URL Encoding:

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

Encodings

MD5:

1c08cab02613f1d5f2c845d7451a1867

SHA1:

81b1628d45b1e2eae788bca2bc58314586e683e2

Base64:

5YyU