Unicode Finder

"均" U+5747(CJK UNIFIED IDEOGRAPH-5747)

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

Programming

C
\u5747
JavaScript
\u5747
Java
\u5747
Json
\u5747
Python
\u5747
Perl
\x{5747}
PHP
\x{5747}
Ruby
\u{5747}
Rust
\u{5747}
Go
\u5747

Web

CSS
\005747
HtmlDecimal
均
HtmlHexadecimal
均
Url
%E5%9D%87

Code

MD5
bb55b8d1d0b0463b7b980b75c4f67f1a
Sha1
8e602c9a8e5565bdb7d079f24ce036dd133686f8
Base64
5Z2H

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5747';
console.log(char);  // Output: 均

Java:

char c = '\u5747';
System.out.println(c);  // Output: 均

JSON:

{"text": "\u5747"}  // Value: 均

Python:

char = '\u5747'
print(char)  # Output: 均

Perl:

my $char = "\x{5747}";
print $char;  # Output: 均

PHP:

$char = "\x{5747}";
echo $char;  // Output: 均

Ruby:

char = "\u{5747}"
puts char  # Output: 均

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005747";  /* Display: 均 */
}

HTML Decimal:

<p>HTML decimal: &#22343;</p>  <!-- Display: 均 -->

HTML Hexadecimal:

<p>HTML hex: &#x5747;</p>  <!-- Display: 均 -->

URL Encoding:

// 均 URL encoding
https://unicodefinder.com/search.php?query=%E5%9D%87

Encodings

MD5:

bb55b8d1d0b0463b7b980b75c4f67f1a

SHA1:

8e602c9a8e5565bdb7d079f24ce036dd133686f8

Base64:

5Z2H