Unicode Finder

"०" U+0966(DEVANAGARI DIGIT ZERO)

U+0966
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI DIGIT ZERO

Programming

C
\u0966
JavaScript
\u0966
Java
\u0966
Json
\u0966
Python
\u0966
Perl
\x{0966}
PHP
\x{0966}
Ruby
\u{0966}
Rust
\u{966}
Go
\u0966

Web

CSS
\000966
HtmlDecimal
०
HtmlHexadecimal
०
Url
%E0%A5%A6

Code

MD5
26b8c1a3f1da5b1d3af05e38e90beb1a
Sha1
8bb836405bcc769c25f2cd71906fd22cd59569ad
Base64
4KWm

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

Programming Languages

C:

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

JavaScript:

const char = '\u0966';
console.log(char);  // Output: ०

Java:

char c = '\u0966';
System.out.println(c);  // Output: ०

JSON:

{"text": "\u0966"}  // Value: ०

Python:

char = '\u0966'
print(char)  # Output: ०

Perl:

my $char = "\x{0966}";
print $char;  # Output: ०

PHP:

$char = "\x{0966}";
echo $char;  // Output: ०

Ruby:

char = "\u{0966}"
puts char  # Output: ०

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000966";  /* Display: ० */
}

HTML Decimal:

<p>HTML decimal: &#2406;</p>  <!-- Display: ० -->

HTML Hexadecimal:

<p>HTML hex: &#x0966;</p>  <!-- Display: ० -->

URL Encoding:

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

Encodings

MD5:

26b8c1a3f1da5b1d3af05e38e90beb1a

SHA1:

8bb836405bcc769c25f2cd71906fd22cd59569ad

Base64:

4KWm