Unicode Finder

"孏" U+5B4F(CJK UNIFIED IDEOGRAPH-5B4F)

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

Programming

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

Web

CSS
\005B4F
HtmlDecimal
孏
HtmlHexadecimal
孏
Url
%E5%AD%8F

Code

MD5
c4745cd1538bfa8f9337547f808fca3c
Sha1
faf4660fcbb43266902f031d5c870932db3c9a20
Base64
5a2P

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5B4F';
console.log(char);  // Output: 孏

Java:

char c = '\u5B4F';
System.out.println(c);  // Output: 孏

JSON:

{"text": "\u5B4F"}  // Value: 孏

Python:

char = '\u5B4F'
print(char)  # Output: 孏

Perl:

my $char = "\x{5B4F}";
print $char;  # Output: 孏

PHP:

$char = "\x{5B4F}";
echo $char;  // Output: 孏

Ruby:

char = "\u{5B4F}"
puts char  # Output: 孏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23375;</p>  <!-- Display: 孏 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B4F;</p>  <!-- Display: 孏 -->

URL Encoding:

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

Encodings

MD5:

c4745cd1538bfa8f9337547f808fca3c

SHA1:

faf4660fcbb43266902f031d5c870932db3c9a20

Base64:

5a2P