Unicode Finder

"垘" U+5798(CJK UNIFIED IDEOGRAPH-5798)

U+5798
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5798

Programming

C
\u5798
JavaScript
\u5798
Java
\u5798
Json
\u5798
Python
\u5798
Perl
\x{5798}
PHP
\x{5798}
Ruby
\u{5798}
Rust
\u{5798}
Go
\u5798

Web

CSS
\005798
HtmlDecimal
垘
HtmlHexadecimal
垘
Url
%E5%9E%98

Code

MD5
d054924d3db5e00eb79f21c9cad69309
Sha1
d6fb997dfc2151a575e37b520708511c6b8a7caa
Base64
5Z6Y

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5798';
console.log(char);  // Output: 垘

Java:

char c = '\u5798';
System.out.println(c);  // Output: 垘

JSON:

{"text": "\u5798"}  // Value: 垘

Python:

char = '\u5798'
print(char)  # Output: 垘

Perl:

my $char = "\x{5798}";
print $char;  # Output: 垘

PHP:

$char = "\x{5798}";
echo $char;  // Output: 垘

Ruby:

char = "\u{5798}"
puts char  # Output: 垘

Rust:

let c = '\u{5798}';
println!("{}", c);  // Output: 垘

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005798";  /* Display: 垘 */
}

HTML Decimal:

<p>HTML decimal: &#22424;</p>  <!-- Display: 垘 -->

HTML Hexadecimal:

<p>HTML hex: &#x5798;</p>  <!-- Display: 垘 -->

URL Encoding:

// 垘 URL encoding
https://unicodefinder.com/search.php?query=%E5%9E%98

Encodings

MD5:

d054924d3db5e00eb79f21c9cad69309

SHA1:

d6fb997dfc2151a575e37b520708511c6b8a7caa

Base64:

5Z6Y