Unicode Finder

"埤" U+57E4(CJK UNIFIED IDEOGRAPH-57E4)

U+57E4
Nombre del Bloque
CJK Unified Ideographs
Nombre
CJK UNIFIED IDEOGRAPH-57E4

Programming

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

Web

CSS
\0057E4
HtmlDecimal
埤
HtmlHexadecimal
埤
Url
%E5%9F%A4

Code

MD5
3ed1f92c17cd3cfaa48ba8a9d9eb625b
Sha1
e64eb054486129d2dc48f7492c1f1c455f47cab4
Base64
5Z+k

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u57E4';
console.log(char);  // Output: 埤

Java:

char c = '\u57E4';
System.out.println(c);  // Output: 埤

JSON:

{"text": "\u57E4"}  // Value: 埤

Python:

char = '\u57E4'
print(char)  # Output: 埤

Perl:

my $char = "\x{57E4}";
print $char;  # Output: 埤

PHP:

$char = "\x{57E4}";
echo $char;  // Output: 埤

Ruby:

char = "\u{57E4}"
puts char  # Output: 埤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22500;</p>  <!-- Display: 埤 -->

HTML Hexadecimal:

<p>HTML hex: &#x57E4;</p>  <!-- Display: 埤 -->

URL Encoding:

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

Encodings

MD5:

3ed1f92c17cd3cfaa48ba8a9d9eb625b

SHA1:

e64eb054486129d2dc48f7492c1f1c455f47cab4

Base64:

5Z+k