Unicode Finder

"垗" U+5797(CJK UNIFIED IDEOGRAPH-5797)

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

Programming

C
\u5797
JavaScript
\u5797
Java
\u5797
Json
\u5797
Python
\u5797
Perl
\x{5797}
PHP
\x{5797}
Ruby
\u{5797}
Rust
\u{5797}
Go
\u5797

Web

CSS
\005797
HtmlDecimal
垗
HtmlHexadecimal
垗
Url
%E5%9E%97

Code

MD5
45cc1c1f767529d4963e1890384ec525
Sha1
a40815d542a4beb4e01b732c8b95fbd6399503ea
Base64
5Z6X

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5797';
console.log(char);  // Output: 垗

Java:

char c = '\u5797';
System.out.println(c);  // Output: 垗

JSON:

{"text": "\u5797"}  // Value: 垗

Python:

char = '\u5797'
print(char)  # Output: 垗

Perl:

my $char = "\x{5797}";
print $char;  # Output: 垗

PHP:

$char = "\x{5797}";
echo $char;  // Output: 垗

Ruby:

char = "\u{5797}"
puts char  # Output: 垗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005797";  /* Display: 垗 */
}

HTML Decimal:

<p>HTML decimal: &#22423;</p>  <!-- Display: 垗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5797;</p>  <!-- Display: 垗 -->

URL Encoding:

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

Encodings

MD5:

45cc1c1f767529d4963e1890384ec525

SHA1:

a40815d542a4beb4e01b732c8b95fbd6399503ea

Base64:

5Z6X