Unicode Finder

"ऱ" U+0931(DEVANAGARI LETTER RRA)

U+0931
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER RRA

Programming

C
\u0931
JavaScript
\u0931
Java
\u0931
Json
\u0931
Python
\u0931
Perl
\x{0931}
PHP
\x{0931}
Ruby
\u{0931}
Rust
\u{931}
Go
\u0931

Web

CSS
\000931
HtmlDecimal
ऱ
HtmlHexadecimal
ऱ
Url
%E0%A4%B1

Code

MD5
4b48d442a6da639b7f16e6d89e8ae654
Sha1
57c8b8a8659bb1b4dd740eb8aab1b38f512f88fc
Base64
4KSx

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

Programming Languages

C:

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

JavaScript:

const char = '\u0931';
console.log(char);  // Output: ऱ

Java:

char c = '\u0931';
System.out.println(c);  // Output: ऱ

JSON:

{"text": "\u0931"}  // Value: ऱ

Python:

char = '\u0931'
print(char)  # Output: ऱ

Perl:

my $char = "\x{0931}";
print $char;  # Output: ऱ

PHP:

$char = "\x{0931}";
echo $char;  // Output: ऱ

Ruby:

char = "\u{0931}"
puts char  # Output: ऱ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000931";  /* Display: ऱ */
}

HTML Decimal:

<p>HTML decimal: &#2353;</p>  <!-- Display: ऱ -->

HTML Hexadecimal:

<p>HTML hex: &#x0931;</p>  <!-- Display: ऱ -->

URL Encoding:

// ऱ URL encoding
https://unicodefinder.com/search.php?query=%E0%A4%B1

Encodings

MD5:

4b48d442a6da639b7f16e6d89e8ae654

SHA1:

57c8b8a8659bb1b4dd740eb8aab1b38f512f88fc

Base64:

4KSx