Unicode Finder

"孋" U+5B4B(CJK UNIFIED IDEOGRAPH-5B4B)

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

Programming

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

Web

CSS
\005B4B
HtmlDecimal
孋
HtmlHexadecimal
孋
Url
%E5%AD%8B

Code

MD5
dde002639faa70fb3c68665b71e5ee90
Sha1
46602a492af592a8386ed3a09a3bb018dfe0550a
Base64
5a2L

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

Programming Languages

C:

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

JavaScript:

const char = '\u5B4B';
console.log(char);  // Output: 孋

Java:

char c = '\u5B4B';
System.out.println(c);  // Output: 孋

JSON:

{"text": "\u5B4B"}  // Value: 孋

Python:

char = '\u5B4B'
print(char)  # Output: 孋

Perl:

my $char = "\x{5B4B}";
print $char;  # Output: 孋

PHP:

$char = "\x{5B4B}";
echo $char;  // Output: 孋

Ruby:

char = "\u{5B4B}"
puts char  # Output: 孋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23371;</p>  <!-- Display: 孋 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B4B;</p>  <!-- Display: 孋 -->

URL Encoding:

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

Encodings

MD5:

dde002639faa70fb3c68665b71e5ee90

SHA1:

46602a492af592a8386ed3a09a3bb018dfe0550a

Base64:

5a2L