Unicode Finder

"१" U+0967(DEVANAGARI DIGIT ONE)

U+0967
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI DIGIT ONE

Programming

C
\u0967
JavaScript
\u0967
Java
\u0967
Json
\u0967
Python
\u0967
Perl
\x{0967}
PHP
\x{0967}
Ruby
\u{0967}
Rust
\u{967}
Go
\u0967

Web

CSS
\000967
HtmlDecimal
१
HtmlHexadecimal
१
Url
%E0%A5%A7

Code

MD5
6c4234807a294ff278c68f18493b7dee
Sha1
d21c12abdf0ac356d694c13be7843073a396d66d
Base64
4KWn

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

Programming Languages

C:

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

JavaScript:

const char = '\u0967';
console.log(char);  // Output: १

Java:

char c = '\u0967';
System.out.println(c);  // Output: १

JSON:

{"text": "\u0967"}  // Value: १

Python:

char = '\u0967'
print(char)  # Output: १

Perl:

my $char = "\x{0967}";
print $char;  # Output: १

PHP:

$char = "\x{0967}";
echo $char;  // Output: १

Ruby:

char = "\u{0967}"
puts char  # Output: १

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000967";  /* Display: १ */
}

HTML Decimal:

<p>HTML decimal: &#2407;</p>  <!-- Display: १ -->

HTML Hexadecimal:

<p>HTML hex: &#x0967;</p>  <!-- Display: १ -->

URL Encoding:

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

Encodings

MD5:

6c4234807a294ff278c68f18493b7dee

SHA1:

d21c12abdf0ac356d694c13be7843073a396d66d

Base64:

4KWn