Unicode Finder

"པ" U+0F54(TIBETAN LETTER PA)

U+0F54
ব্লক নাম
Tibetan
নাম
TIBETAN LETTER PA

Programming

C
\u0F54
JavaScript
\u0F54
Java
\u0F54
Json
\u0F54
Python
\u0F54
Perl
\x{0F54}
PHP
\x{0F54}
Ruby
\u{0F54}
Rust
\u{F54}
Go
\u0F54

Web

CSS
\000F54
HtmlDecimal
པ
HtmlHexadecimal
པ
Url
%E0%BD%94

Code

MD5
d723d61f9d973ee33081bb8c562c9f29
Sha1
a181abd4b5e273e8ef81c62ac3e3022acb16cb4c
Base64
4L2U

ব্যবহারের উদাহরণ

Programming Languages

C:

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

JavaScript:

const char = '\u0F54';
console.log(char);  // Output: པ

Java:

char c = '\u0F54';
System.out.println(c);  // Output: པ

JSON:

{"text": "\u0F54"}  // Value: པ

Python:

char = '\u0F54'
print(char)  # Output: པ

Perl:

my $char = "\x{0F54}";
print $char;  # Output: པ

PHP:

$char = "\x{0F54}";
echo $char;  // Output: པ

Ruby:

char = "\u{0F54}"
puts char  # Output: པ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000F54";  /* Display: པ */
}

HTML Decimal:

<p>HTML decimal: &#3924;</p>  <!-- Display: པ -->

HTML Hexadecimal:

<p>HTML hex: &#x0F54;</p>  <!-- Display: པ -->

URL Encoding:

// པ URL encoding
https://unicodefinder.com/search.php?query=%E0%BD%94

Encodings

MD5:

d723d61f9d973ee33081bb8c562c9f29

SHA1:

a181abd4b5e273e8ef81c62ac3e3022acb16cb4c

Base64:

4L2U