Unicode Finder

"孊" U+5B4A(CJK UNIFIED IDEOGRAPH-5B4A)

U+5B4A
Nome do Bloco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-5B4A

Programming

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

Web

CSS
\005B4A
HtmlDecimal
孊
HtmlHexadecimal
孊
Url
%E5%AD%8A

Code

MD5
cdbc08579844bda921d2e7c39e0fc44d
Sha1
9e437033bca8e5d8525c67eaff63e82d26ab4b8d
Base64
5a2K

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5B4A';
console.log(char);  // Output: 孊

Java:

char c = '\u5B4A';
System.out.println(c);  // Output: 孊

JSON:

{"text": "\u5B4A"}  // Value: 孊

Python:

char = '\u5B4A'
print(char)  # Output: 孊

Perl:

my $char = "\x{5B4A}";
print $char;  # Output: 孊

PHP:

$char = "\x{5B4A}";
echo $char;  // Output: 孊

Ruby:

char = "\u{5B4A}"
puts char  # Output: 孊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23370;</p>  <!-- Display: 孊 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B4A;</p>  <!-- Display: 孊 -->

URL Encoding:

// 孊 URL encoding
https://unicodefinder.com/search.php?query=%E5%AD%8A

Encodings

MD5:

cdbc08579844bda921d2e7c39e0fc44d

SHA1:

9e437033bca8e5d8525c67eaff63e82d26ab4b8d

Base64:

5a2K