Unicode Finder

"垕" U+5795(CJK UNIFIED IDEOGRAPH-5795)

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

Programming

C
\u5795
JavaScript
\u5795
Java
\u5795
Json
\u5795
Python
\u5795
Perl
\x{5795}
PHP
\x{5795}
Ruby
\u{5795}
Rust
\u{5795}
Go
\u5795

Web

CSS
\005795
HtmlDecimal
垕
HtmlHexadecimal
垕
Url
%E5%9E%95

Code

MD5
6276bf88c8df979bb535c56ec75c53eb
Sha1
20e06ca7900f2c71a8993b2bc860944f6ce4497d
Base64
5Z6V

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5795';
console.log(char);  // Output: 垕

Java:

char c = '\u5795';
System.out.println(c);  // Output: 垕

JSON:

{"text": "\u5795"}  // Value: 垕

Python:

char = '\u5795'
print(char)  # Output: 垕

Perl:

my $char = "\x{5795}";
print $char;  # Output: 垕

PHP:

$char = "\x{5795}";
echo $char;  // Output: 垕

Ruby:

char = "\u{5795}"
puts char  # Output: 垕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005795";  /* Display: 垕 */
}

HTML Decimal:

<p>HTML decimal: &#22421;</p>  <!-- Display: 垕 -->

HTML Hexadecimal:

<p>HTML hex: &#x5795;</p>  <!-- Display: 垕 -->

URL Encoding:

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

Encodings

MD5:

6276bf88c8df979bb535c56ec75c53eb

SHA1:

20e06ca7900f2c71a8993b2bc860944f6ce4497d

Base64:

5Z6V