Unicode Finder

"ਰ" U+0A30(GURMUKHI LETTER RA)

U+0A30
ব্লক নাম
Gurmukhi
নাম
GURMUKHI LETTER RA

Programming

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

Web

CSS
\000A30
HtmlDecimal
ਰ
HtmlHexadecimal
ਰ
Url
%E0%A8%B0

Code

MD5
c6b4675e07f8f9c8048c0312c5a7368d
Sha1
f74c4d6654f4b5d3ca49a33dbcd49ae8b84b77bd
Base64
4Kiw

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

Programming Languages

C:

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

JavaScript:

const char = '\u0A30';
console.log(char);  // Output: ਰ

Java:

char c = '\u0A30';
System.out.println(c);  // Output: ਰ

JSON:

{"text": "\u0A30"}  // Value: ਰ

Python:

char = '\u0A30'
print(char)  # Output: ਰ

Perl:

my $char = "\x{0A30}";
print $char;  # Output: ਰ

PHP:

$char = "\x{0A30}";
echo $char;  // Output: ਰ

Ruby:

char = "\u{0A30}"
puts char  # Output: ਰ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2608;</p>  <!-- Display: ਰ -->

HTML Hexadecimal:

<p>HTML hex: &#x0A30;</p>  <!-- Display: ਰ -->

URL Encoding:

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

Encodings

MD5:

c6b4675e07f8f9c8048c0312c5a7368d

SHA1:

f74c4d6654f4b5d3ca49a33dbcd49ae8b84b77bd

Base64:

4Kiw