Unicode Finder

"孁" U+5B41(CJK UNIFIED IDEOGRAPH-5B41)

U+5B41
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5B41

Programming

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

Web

CSS
\005B41
HtmlDecimal
孁
HtmlHexadecimal
孁
Url
%E5%AD%81

Code

MD5
46ace66ca10382141b106c77694385f1
Sha1
9c449db9de1b185bd11ff33bc6d910ac7596480b
Base64
5a2B

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5B41';
console.log(char);  // Output: 孁

Java:

char c = '\u5B41';
System.out.println(c);  // Output: 孁

JSON:

{"text": "\u5B41"}  // Value: 孁

Python:

char = '\u5B41'
print(char)  # Output: 孁

Perl:

my $char = "\x{5B41}";
print $char;  # Output: 孁

PHP:

$char = "\x{5B41}";
echo $char;  // Output: 孁

Ruby:

char = "\u{5B41}"
puts char  # Output: 孁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23361;</p>  <!-- Display: 孁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B41;</p>  <!-- Display: 孁 -->

URL Encoding:

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

Encodings

MD5:

46ace66ca10382141b106c77694385f1

SHA1:

9c449db9de1b185bd11ff33bc6d910ac7596480b

Base64:

5a2B