Unicode Finder

"嘥" U+5625(CJK UNIFIED IDEOGRAPH-5625)

U+5625
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-5625

Programming

C
\u5625
JavaScript
\u5625
Java
\u5625
Json
\u5625
Python
\u5625
Perl
\x{5625}
PHP
\x{5625}
Ruby
\u{5625}
Rust
\u{5625}
Go
\u5625

Web

CSS
\005625
HtmlDecimal
嘥
HtmlHexadecimal
嘥
Url
%E5%98%A5

Code

MD5
cdbfd39f3cefd105e2d8178832b617ce
Sha1
ac79c7f1337bd7dc8b3f7320b8eee79dad8a2178
Base64
5Zil

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5625';
console.log(char);  // Output: 嘥

Java:

char c = '\u5625';
System.out.println(c);  // Output: 嘥

JSON:

{"text": "\u5625"}  // Value: 嘥

Python:

char = '\u5625'
print(char)  # Output: 嘥

Perl:

my $char = "\x{5625}";
print $char;  # Output: 嘥

PHP:

$char = "\x{5625}";
echo $char;  // Output: 嘥

Ruby:

char = "\u{5625}"
puts char  # Output: 嘥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005625";  /* Display: 嘥 */
}

HTML Decimal:

<p>HTML decimal: &#22053;</p>  <!-- Display: 嘥 -->

HTML Hexadecimal:

<p>HTML hex: &#x5625;</p>  <!-- Display: 嘥 -->

URL Encoding:

// 嘥 URL encoding
https://unicodefinder.com/search.php?query=%E5%98%A5

Encodings

MD5:

cdbfd39f3cefd105e2d8178832b617ce

SHA1:

ac79c7f1337bd7dc8b3f7320b8eee79dad8a2178

Base64:

5Zil