Unicode Finder

"埙" U+57D9(CJK UNIFIED IDEOGRAPH-57D9)

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

Programming

C
\u57D9
JavaScript
\u57D9
Java
\u57D9
Json
\u57D9
Python
\u57D9
Perl
\x{57D9}
PHP
\x{57D9}
Ruby
\u{57D9}
Rust
\u{57D9}
Go
\u57D9

Web

CSS
\0057D9
HtmlDecimal
埙
HtmlHexadecimal
埙
Url
%E5%9F%99

Code

MD5
0473491bc2e5246c24d48b54467ff09d
Sha1
fabded35297bcdefa24a3d9ab6660bfcbc36e4ed
Base64
5Z+Z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u57D9';
console.log(char);  // Output: 埙

Java:

char c = '\u57D9';
System.out.println(c);  // Output: 埙

JSON:

{"text": "\u57D9"}  // Value: 埙

Python:

char = '\u57D9'
print(char)  # Output: 埙

Perl:

my $char = "\x{57D9}";
print $char;  # Output: 埙

PHP:

$char = "\x{57D9}";
echo $char;  // Output: 埙

Ruby:

char = "\u{57D9}"
puts char  # Output: 埙

Rust:

let c = '\u{57D9}';
println!("{}", c);  // Output: 埙

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0057D9";  /* Display: 埙 */
}

HTML Decimal:

<p>HTML decimal: &#22489;</p>  <!-- Display: 埙 -->

HTML Hexadecimal:

<p>HTML hex: &#x57D9;</p>  <!-- Display: 埙 -->

URL Encoding:

// 埙 URL encoding
https://unicodefinder.com/search.php?query=%E5%9F%99

Encodings

MD5:

0473491bc2e5246c24d48b54467ff09d

SHA1:

fabded35297bcdefa24a3d9ab6660bfcbc36e4ed

Base64:

5Z+Z