Unicode Finder

"吡" U+5421(CJK UNIFIED IDEOGRAPH-5421)

U+5421
ब्लॉक का नाम
CJK Unified Ideographs
नाम
CJK UNIFIED IDEOGRAPH-5421

Programming

C
\u5421
JavaScript
\u5421
Java
\u5421
Json
\u5421
Python
\u5421
Perl
\x{5421}
PHP
\x{5421}
Ruby
\u{5421}
Rust
\u{5421}
Go
\u5421

Web

CSS
\005421
HtmlDecimal
吡
HtmlHexadecimal
吡
Url
%E5%90%A1

Code

MD5
2c5d8548cca676bf5dbee40f3623eb50
Sha1
83fa40af72eb213959a81b0f0df06a692a09d0d4
Base64
5ZCh

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u5421';
console.log(char);  // Output: 吡

Java:

char c = '\u5421';
System.out.println(c);  // Output: 吡

JSON:

{"text": "\u5421"}  // Value: 吡

Python:

char = '\u5421'
print(char)  # Output: 吡

Perl:

my $char = "\x{5421}";
print $char;  # Output: 吡

PHP:

$char = "\x{5421}";
echo $char;  // Output: 吡

Ruby:

char = "\u{5421}"
puts char  # Output: 吡

Rust:

let c = '\u{5421}';
println!("{}", c);  // Output: 吡

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005421";  /* Display: 吡 */
}

HTML Decimal:

<p>HTML decimal: &#21537;</p>  <!-- Display: 吡 -->

HTML Hexadecimal:

<p>HTML hex: &#x5421;</p>  <!-- Display: 吡 -->

URL Encoding:

// 吡 URL encoding
https://unicodefinder.com/search.php?query=%E5%90%A1

Encodings

MD5:

2c5d8548cca676bf5dbee40f3623eb50

SHA1:

83fa40af72eb213959a81b0f0df06a692a09d0d4

Base64:

5ZCh