Unicode Finder

"६" U+096C(DEVANAGARI DIGIT SIX)

U+096C
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI DIGIT SIX

Programming

C
\u096C
JavaScript
\u096C
Java
\u096C
Json
\u096C
Python
\u096C
Perl
\x{096C}
PHP
\x{096C}
Ruby
\u{096C}
Rust
\u{96C}
Go
\u096C

Web

CSS
\00096C
HtmlDecimal
६
HtmlHexadecimal
६
Url
%E0%A5%AC

Code

MD5
25f02f65c50a2ce20ff135e58dfc854f
Sha1
5e3071854d4d51d98a3e09cedf333d5038b9c6b2
Base64
4KWs

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

Programming Languages

C:

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

JavaScript:

const char = '\u096C';
console.log(char);  // Output: ६

Java:

char c = '\u096C';
System.out.println(c);  // Output: ६

JSON:

{"text": "\u096C"}  // Value: ६

Python:

char = '\u096C'
print(char)  # Output: ६

Perl:

my $char = "\x{096C}";
print $char;  # Output: ६

PHP:

$char = "\x{096C}";
echo $char;  // Output: ६

Ruby:

char = "\u{096C}"
puts char  # Output: ६

Rust:

let c = '\u{96C}';
println!("{}", c);  // Output: ६

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00096C";  /* Display: ६ */
}

HTML Decimal:

<p>HTML decimal: &#2412;</p>  <!-- Display: ६ -->

HTML Hexadecimal:

<p>HTML hex: &#x096C;</p>  <!-- Display: ६ -->

URL Encoding:

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

Encodings

MD5:

25f02f65c50a2ce20ff135e58dfc854f

SHA1:

5e3071854d4d51d98a3e09cedf333d5038b9c6b2

Base64:

4KWs