Unicode Finder

"嬞" U+5B1E(CJK UNIFIED IDEOGRAPH-5B1E)

U+5B1E
Nume Bloc
CJK Unified Ideographs
Nume
CJK UNIFIED IDEOGRAPH-5B1E

Programming

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

Web

CSS
\005B1E
HtmlDecimal
嬞
HtmlHexadecimal
嬞
Url
%E5%AC%9E

Code

MD5
6206ea86b5225352c8d1a162a8da0901
Sha1
da19a156c9a8e222d2ef9491cfac1520106b3a1f
Base64
5aye

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u5B1E';
console.log(char);  // Output: 嬞

Java:

char c = '\u5B1E';
System.out.println(c);  // Output: 嬞

JSON:

{"text": "\u5B1E"}  // Value: 嬞

Python:

char = '\u5B1E'
print(char)  # Output: 嬞

Perl:

my $char = "\x{5B1E}";
print $char;  # Output: 嬞

PHP:

$char = "\x{5B1E}";
echo $char;  // Output: 嬞

Ruby:

char = "\u{5B1E}"
puts char  # Output: 嬞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23326;</p>  <!-- Display: 嬞 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B1E;</p>  <!-- Display: 嬞 -->

URL Encoding:

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

Encodings

MD5:

6206ea86b5225352c8d1a162a8da0901

SHA1:

da19a156c9a8e222d2ef9491cfac1520106b3a1f

Base64:

5aye