Unicode Finder

"嘁" U+5601(CJK UNIFIED IDEOGRAPH-5601)

U+5601
Nume Bloc
CJK Unified Ideographs
Nume
CJK UNIFIED IDEOGRAPH-5601

Programming

C
\u5601
JavaScript
\u5601
Java
\u5601
Json
\u5601
Python
\u5601
Perl
\x{5601}
PHP
\x{5601}
Ruby
\u{5601}
Rust
\u{5601}
Go
\u5601

Web

CSS
\005601
HtmlDecimal
嘁
HtmlHexadecimal
嘁
Url
%E5%98%81

Code

MD5
087fde2c3a375ed1fce9b6c30d8129e0
Sha1
d5d3d07fe50aff5c289c5d59a014116cde39cd66
Base64
5ZiB

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u5601';
console.log(char);  // Output: 嘁

Java:

char c = '\u5601';
System.out.println(c);  // Output: 嘁

JSON:

{"text": "\u5601"}  // Value: 嘁

Python:

char = '\u5601'
print(char)  # Output: 嘁

Perl:

my $char = "\x{5601}";
print $char;  # Output: 嘁

PHP:

$char = "\x{5601}";
echo $char;  // Output: 嘁

Ruby:

char = "\u{5601}"
puts char  # Output: 嘁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005601";  /* Display: 嘁 */
}

HTML Decimal:

<p>HTML decimal: &#22017;</p>  <!-- Display: 嘁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5601;</p>  <!-- Display: 嘁 -->

URL Encoding:

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

Encodings

MD5:

087fde2c3a375ed1fce9b6c30d8129e0

SHA1:

d5d3d07fe50aff5c289c5d59a014116cde39cd66

Base64:

5ZiB