Unicode Finder

"嫉" U+5AC9(CJK UNIFIED IDEOGRAPH-5AC9)

U+5AC9
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-5AC9

Programming

C
\u5AC9
JavaScript
\u5AC9
Java
\u5AC9
Json
\u5AC9
Python
\u5AC9
Perl
\x{5AC9}
PHP
\x{5AC9}
Ruby
\u{5AC9}
Rust
\u{5AC9}
Go
\u5AC9

Web

CSS
\005AC9
HtmlDecimal
嫉
HtmlHexadecimal
嫉
Url
%E5%AB%89

Code

MD5
053c1712b70c82a4a5682709e67d74ed
Sha1
70675c287c686c5d0ee3aaf8e900a8fbabd8e816
Base64
5auJ

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5AC9';
console.log(char);  // Output: 嫉

Java:

char c = '\u5AC9';
System.out.println(c);  // Output: 嫉

JSON:

{"text": "\u5AC9"}  // Value: 嫉

Python:

char = '\u5AC9'
print(char)  # Output: 嫉

Perl:

my $char = "\x{5AC9}";
print $char;  # Output: 嫉

PHP:

$char = "\x{5AC9}";
echo $char;  // Output: 嫉

Ruby:

char = "\u{5AC9}"
puts char  # Output: 嫉

Rust:

let c = '\u{5AC9}';
println!("{}", c);  // Output: 嫉

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005AC9";  /* Display: 嫉 */
}

HTML Decimal:

<p>HTML decimal: &#23241;</p>  <!-- Display: 嫉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5AC9;</p>  <!-- Display: 嫉 -->

URL Encoding:

// 嫉 URL encoding
https://unicodefinder.com/search.php?query=%E5%AB%89

Encodings

MD5:

053c1712b70c82a4a5682709e67d74ed

SHA1:

70675c287c686c5d0ee3aaf8e900a8fbabd8e816

Base64:

5auJ