Unicode Finder

"匀" U+5300(CJK UNIFIED IDEOGRAPH-5300)

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

Programming

C
\u5300
JavaScript
\u5300
Java
\u5300
Json
\u5300
Python
\u5300
Perl
\x{5300}
PHP
\x{5300}
Ruby
\u{5300}
Rust
\u{5300}
Go
\u5300

Web

CSS
\005300
HtmlDecimal
匀
HtmlHexadecimal
匀
Url
%E5%8C%80

Code

MD5
8278b7ed72513736909cf5a9db42d309
Sha1
7583cbcac089bb3b3aea27dedff5e9d8dd42357a
Base64
5YyA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5300';
console.log(char);  // Output: 匀

Java:

char c = '\u5300';
System.out.println(c);  // Output: 匀

JSON:

{"text": "\u5300"}  // Value: 匀

Python:

char = '\u5300'
print(char)  # Output: 匀

Perl:

my $char = "\x{5300}";
print $char;  # Output: 匀

PHP:

$char = "\x{5300}";
echo $char;  // Output: 匀

Ruby:

char = "\u{5300}"
puts char  # Output: 匀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005300";  /* Display: 匀 */
}

HTML Decimal:

<p>HTML decimal: &#21248;</p>  <!-- Display: 匀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5300;</p>  <!-- Display: 匀 -->

URL Encoding:

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

Encodings

MD5:

8278b7ed72513736909cf5a9db42d309

SHA1:

7583cbcac089bb3b3aea27dedff5e9d8dd42357a

Base64:

5YyA