Unicode Finder

"埝" U+57DD(CJK UNIFIED IDEOGRAPH-57DD)

U+57DD
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-57DD

Programming

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

Web

CSS
\0057DD
HtmlDecimal
埝
HtmlHexadecimal
埝
Url
%E5%9F%9D

Code

MD5
e7fa6220d9ebebd28772fd46ec0a46fb
Sha1
ea04ec3f9a21a4df28204cc1430f9ee7b60a7a06
Base64
5Z+d

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u57DD';
console.log(char);  // Output: 埝

Java:

char c = '\u57DD';
System.out.println(c);  // Output: 埝

JSON:

{"text": "\u57DD"}  // Value: 埝

Python:

char = '\u57DD'
print(char)  # Output: 埝

Perl:

my $char = "\x{57DD}";
print $char;  # Output: 埝

PHP:

$char = "\x{57DD}";
echo $char;  // Output: 埝

Ruby:

char = "\u{57DD}"
puts char  # Output: 埝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22493;</p>  <!-- Display: 埝 -->

HTML Hexadecimal:

<p>HTML hex: &#x57DD;</p>  <!-- Display: 埝 -->

URL Encoding:

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

Encodings

MD5:

e7fa6220d9ebebd28772fd46ec0a46fb

SHA1:

ea04ec3f9a21a4df28204cc1430f9ee7b60a7a06

Base64:

5Z+d