Unicode Finder

"孈" U+5B48(CJK UNIFIED IDEOGRAPH-5B48)

U+5B48
Nombre del Bloque
CJK Unified Ideographs
Nombre
CJK UNIFIED IDEOGRAPH-5B48

Programming

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

Web

CSS
\005B48
HtmlDecimal
孈
HtmlHexadecimal
孈
Url
%E5%AD%88

Code

MD5
69208d0df8a5cac158753ad7da5ca662
Sha1
8c4f3ec175a12351ed2fe22a071a5daa7461ca9c
Base64
5a2I

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5B48';
console.log(char);  // Output: 孈

Java:

char c = '\u5B48';
System.out.println(c);  // Output: 孈

JSON:

{"text": "\u5B48"}  // Value: 孈

Python:

char = '\u5B48'
print(char)  # Output: 孈

Perl:

my $char = "\x{5B48}";
print $char;  # Output: 孈

PHP:

$char = "\x{5B48}";
echo $char;  // Output: 孈

Ruby:

char = "\u{5B48}"
puts char  # Output: 孈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23368;</p>  <!-- Display: 孈 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B48;</p>  <!-- Display: 孈 -->

URL Encoding:

// 孈 URL encoding
https://unicodefinder.com/search.php?query=%E5%AD%88

Encodings

MD5:

69208d0df8a5cac158753ad7da5ca662

SHA1:

8c4f3ec175a12351ed2fe22a071a5daa7461ca9c

Base64:

5a2I