Unicode Finder

"ਫ" U+0A2B(GURMUKHI LETTER PHA)

U+0A2B
ব্লক নাম
Gurmukhi
নাম
GURMUKHI LETTER PHA

Programming

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

Web

CSS
\000A2B
HtmlDecimal
ਫ
HtmlHexadecimal
ਫ
Url
%E0%A8%AB

Code

MD5
426a2038f37e903e5ed2fbfda95a2bc6
Sha1
5686a70e85f06b896d1fe0d32d938ad8bc461a26
Base64
4Kir

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

Programming Languages

C:

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

JavaScript:

const char = '\u0A2B';
console.log(char);  // Output: ਫ

Java:

char c = '\u0A2B';
System.out.println(c);  // Output: ਫ

JSON:

{"text": "\u0A2B"}  // Value: ਫ

Python:

char = '\u0A2B'
print(char)  # Output: ਫ

Perl:

my $char = "\x{0A2B}";
print $char;  # Output: ਫ

PHP:

$char = "\x{0A2B}";
echo $char;  // Output: ਫ

Ruby:

char = "\u{0A2B}"
puts char  # Output: ਫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2603;</p>  <!-- Display: ਫ -->

HTML Hexadecimal:

<p>HTML hex: &#x0A2B;</p>  <!-- Display: ਫ -->

URL Encoding:

// ਫ URL encoding
https://unicodefinder.com/search.php?query=%E0%A8%AB

Encodings

MD5:

426a2038f37e903e5ed2fbfda95a2bc6

SHA1:

5686a70e85f06b896d1fe0d32d938ad8bc461a26

Base64:

4Kir