Unicode Finder

"॒" U+0952(DEVANAGARI STRESS SIGN ANUDATTA)

U+0952
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI STRESS SIGN ANUDATTA

Programming

C
\u0952
JavaScript
\u0952
Java
\u0952
Json
\u0952
Python
\u0952
Perl
\x{0952}
PHP
\x{0952}
Ruby
\u{0952}
Rust
\u{952}
Go
\u0952

Web

CSS
\000952
HtmlDecimal
॒
HtmlHexadecimal
॒
Url
%E0%A5%92

Code

MD5
a1266ee7880fcb35b42ccad6a8fcbd66
Sha1
b14118c518db6ccc9e6168ffb1d49fd5ba28114d
Base64
4KWS

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

Programming Languages

C:

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

JavaScript:

const char = '\u0952';
console.log(char);  // Output: ॒

Java:

char c = '\u0952';
System.out.println(c);  // Output: ॒

JSON:

{"text": "\u0952"}  // Value: ॒

Python:

char = '\u0952'
print(char)  # Output: ॒

Perl:

my $char = "\x{0952}";
print $char;  # Output: ॒

PHP:

$char = "\x{0952}";
echo $char;  // Output: ॒

Ruby:

char = "\u{0952}"
puts char  # Output: ॒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000952";  /* Display: ॒ */
}

HTML Decimal:

<p>HTML decimal: &#2386;</p>  <!-- Display: ॒ -->

HTML Hexadecimal:

<p>HTML hex: &#x0952;</p>  <!-- Display: ॒ -->

URL Encoding:

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

Encodings

MD5:

a1266ee7880fcb35b42ccad6a8fcbd66

SHA1:

b14118c518db6ccc9e6168ffb1d49fd5ba28114d

Base64:

4KWS