Unicode Finder

"垌" U+578C(CJK UNIFIED IDEOGRAPH-578C)

U+578C
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-578C

Programming

C
\u578C
JavaScript
\u578C
Java
\u578C
Json
\u578C
Python
\u578C
Perl
\x{578C}
PHP
\x{578C}
Ruby
\u{578C}
Rust
\u{578C}
Go
\u578C

Web

CSS
\00578C
HtmlDecimal
垌
HtmlHexadecimal
垌
Url
%E5%9E%8C

Code

MD5
ea887e0464f8f801b1069d348bb4d7f8
Sha1
33182228c229896a1640ed48ab8f1a192ce4d4d5
Base64
5Z6M

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u578C';
console.log(char);  // Output: 垌

Java:

char c = '\u578C';
System.out.println(c);  // Output: 垌

JSON:

{"text": "\u578C"}  // Value: 垌

Python:

char = '\u578C'
print(char)  # Output: 垌

Perl:

my $char = "\x{578C}";
print $char;  # Output: 垌

PHP:

$char = "\x{578C}";
echo $char;  // Output: 垌

Ruby:

char = "\u{578C}"
puts char  # Output: 垌

Rust:

let c = '\u{578C}';
println!("{}", c);  // Output: 垌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00578C";  /* Display: 垌 */
}

HTML Decimal:

<p>HTML decimal: &#22412;</p>  <!-- Display: 垌 -->

HTML Hexadecimal:

<p>HTML hex: &#x578C;</p>  <!-- Display: 垌 -->

URL Encoding:

// 垌 URL encoding
https://unicodefinder.com/search.php?query=%E5%9E%8C

Encodings

MD5:

ea887e0464f8f801b1069d348bb4d7f8

SHA1:

33182228c229896a1640ed48ab8f1a192ce4d4d5

Base64:

5Z6M