Unicode Finder

"॰" U+0970(DEVANAGARI ABBREVIATION SIGN)

U+0970
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI ABBREVIATION SIGN

Programming

C
\u0970
JavaScript
\u0970
Java
\u0970
Json
\u0970
Python
\u0970
Perl
\x{0970}
PHP
\x{0970}
Ruby
\u{0970}
Rust
\u{970}
Go
\u0970

Web

CSS
\000970
HtmlDecimal
॰
HtmlHexadecimal
॰
Url
%E0%A5%B0

Code

MD5
0ebf9e58bd786d5a32716e25f3692569
Sha1
c0d0e159d683faa619dc04ff77d3ebbdd531a6d2
Base64
4KWw

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

Programming Languages

C:

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

JavaScript:

const char = '\u0970';
console.log(char);  // Output: ॰

Java:

char c = '\u0970';
System.out.println(c);  // Output: ॰

JSON:

{"text": "\u0970"}  // Value: ॰

Python:

char = '\u0970'
print(char)  # Output: ॰

Perl:

my $char = "\x{0970}";
print $char;  # Output: ॰

PHP:

$char = "\x{0970}";
echo $char;  // Output: ॰

Ruby:

char = "\u{0970}"
puts char  # Output: ॰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000970";  /* Display: ॰ */
}

HTML Decimal:

<p>HTML decimal: &#2416;</p>  <!-- Display: ॰ -->

HTML Hexadecimal:

<p>HTML hex: &#x0970;</p>  <!-- Display: ॰ -->

URL Encoding:

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

Encodings

MD5:

0ebf9e58bd786d5a32716e25f3692569

SHA1:

c0d0e159d683faa619dc04ff77d3ebbdd531a6d2

Base64:

4KWw