Unicode Finder

"埚" U+57DA(CJK UNIFIED IDEOGRAPH-57DA)

U+57DA
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-57DA

Programming

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

Web

CSS
\0057DA
HtmlDecimal
埚
HtmlHexadecimal
埚
Url
%E5%9F%9A

Code

MD5
c17d60880b66b8e03e9c19c16d903f00
Sha1
51f5b90662274a59f782ca21a5fc0d57e4a7e0d0
Base64
5Z+a

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u57DA';
console.log(char);  // Output: 埚

Java:

char c = '\u57DA';
System.out.println(c);  // Output: 埚

JSON:

{"text": "\u57DA"}  // Value: 埚

Python:

char = '\u57DA'
print(char)  # Output: 埚

Perl:

my $char = "\x{57DA}";
print $char;  # Output: 埚

PHP:

$char = "\x{57DA}";
echo $char;  // Output: 埚

Ruby:

char = "\u{57DA}"
puts char  # Output: 埚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22490;</p>  <!-- Display: 埚 -->

HTML Hexadecimal:

<p>HTML hex: &#x57DA;</p>  <!-- Display: 埚 -->

URL Encoding:

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

Encodings

MD5:

c17d60880b66b8e03e9c19c16d903f00

SHA1:

51f5b90662274a59f782ca21a5fc0d57e4a7e0d0

Base64:

5Z+a