Unicode Finder

"埂" U+57C2(CJK UNIFIED IDEOGRAPH-57C2)

U+57C2
Blockname
CJK Unified Ideographs
Name
CJK UNIFIED IDEOGRAPH-57C2

Programming

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

Web

CSS
\0057C2
HtmlDecimal
埂
HtmlHexadecimal
埂
Url
%E5%9F%82

Code

MD5
daf57f5af848966141a04488147791f4
Sha1
f75514d1ec416d77c9b6d3ed5d7637f806f0c8fd
Base64
5Z+C

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u57C2';
console.log(char);  // Output: 埂

Java:

char c = '\u57C2';
System.out.println(c);  // Output: 埂

JSON:

{"text": "\u57C2"}  // Value: 埂

Python:

char = '\u57C2'
print(char)  # Output: 埂

Perl:

my $char = "\x{57C2}";
print $char;  # Output: 埂

PHP:

$char = "\x{57C2}";
echo $char;  // Output: 埂

Ruby:

char = "\u{57C2}"
puts char  # Output: 埂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22466;</p>  <!-- Display: 埂 -->

HTML Hexadecimal:

<p>HTML hex: &#x57C2;</p>  <!-- Display: 埂 -->

URL Encoding:

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

Encodings

MD5:

daf57f5af848966141a04488147791f4

SHA1:

f75514d1ec416d77c9b6d3ed5d7637f806f0c8fd

Base64:

5Z+C