Unicode Finder

"ॱ" U+0971(DEVANAGARI SIGN HIGH SPACING DOT)

U+0971
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI SIGN HIGH SPACING DOT

Programming

C
\u0971
JavaScript
\u0971
Java
\u0971
Json
\u0971
Python
\u0971
Perl
\x{0971}
PHP
\x{0971}
Ruby
\u{0971}
Rust
\u{971}
Go
\u0971

Web

CSS
\000971
HtmlDecimal
ॱ
HtmlHexadecimal
ॱ
Url
%E0%A5%B1

Code

MD5
8e60a5e3888a351683104809089b6c06
Sha1
9e0d81dd9d49a8f6e7dcf65966f0b482f61a6df9
Base64
4KWx

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

Programming Languages

C:

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

JavaScript:

const char = '\u0971';
console.log(char);  // Output: ॱ

Java:

char c = '\u0971';
System.out.println(c);  // Output: ॱ

JSON:

{"text": "\u0971"}  // Value: ॱ

Python:

char = '\u0971'
print(char)  # Output: ॱ

Perl:

my $char = "\x{0971}";
print $char;  # Output: ॱ

PHP:

$char = "\x{0971}";
echo $char;  // Output: ॱ

Ruby:

char = "\u{0971}"
puts char  # Output: ॱ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000971";  /* Display: ॱ */
}

HTML Decimal:

<p>HTML decimal: &#2417;</p>  <!-- Display: ॱ -->

HTML Hexadecimal:

<p>HTML hex: &#x0971;</p>  <!-- Display: ॱ -->

URL Encoding:

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

Encodings

MD5:

8e60a5e3888a351683104809089b6c06

SHA1:

9e0d81dd9d49a8f6e7dcf65966f0b482f61a6df9

Base64:

4KWx