Unicode Finder

"嘱" U+5631(CJK UNIFIED IDEOGRAPH-5631)

U+5631
Όνομα Μπλοκ
CJK Unified Ideographs
Όνομα
CJK UNIFIED IDEOGRAPH-5631

Programming

C
\u5631
JavaScript
\u5631
Java
\u5631
Json
\u5631
Python
\u5631
Perl
\x{5631}
PHP
\x{5631}
Ruby
\u{5631}
Rust
\u{5631}
Go
\u5631

Web

CSS
\005631
HtmlDecimal
嘱
HtmlHexadecimal
嘱
Url
%E5%98%B1

Code

MD5
a83db5d0f49905fe9bcf30acb303100a
Sha1
9e2a349d70b44af26c41390099c37b0e97aa0e37
Base64
5Zix

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u5631';
console.log(char);  // Output: 嘱

Java:

char c = '\u5631';
System.out.println(c);  // Output: 嘱

JSON:

{"text": "\u5631"}  // Value: 嘱

Python:

char = '\u5631'
print(char)  # Output: 嘱

Perl:

my $char = "\x{5631}";
print $char;  # Output: 嘱

PHP:

$char = "\x{5631}";
echo $char;  // Output: 嘱

Ruby:

char = "\u{5631}"
puts char  # Output: 嘱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005631";  /* Display: 嘱 */
}

HTML Decimal:

<p>HTML decimal: &#22065;</p>  <!-- Display: 嘱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5631;</p>  <!-- Display: 嘱 -->

URL Encoding:

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

Encodings

MD5:

a83db5d0f49905fe9bcf30acb303100a

SHA1:

9e2a349d70b44af26c41390099c37b0e97aa0e37

Base64:

5Zix