Unicode Finder

"ग" U+0917(DEVANAGARI LETTER GA)

U+0917
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER GA

Programming

C
\u0917
JavaScript
\u0917
Java
\u0917
Json
\u0917
Python
\u0917
Perl
\x{0917}
PHP
\x{0917}
Ruby
\u{0917}
Rust
\u{917}
Go
\u0917

Web

CSS
\000917
HtmlDecimal
ग
HtmlHexadecimal
ग
Url
%E0%A4%97

Code

MD5
c9b56ebff7dce1c5b2ec95b5a74f5932
Sha1
d073d90f5cd815e26e07f961fe1a116a716d1850
Base64
4KSX

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

Programming Languages

C:

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

JavaScript:

const char = '\u0917';
console.log(char);  // Output: ग

Java:

char c = '\u0917';
System.out.println(c);  // Output: ग

JSON:

{"text": "\u0917"}  // Value: ग

Python:

char = '\u0917'
print(char)  # Output: ग

Perl:

my $char = "\x{0917}";
print $char;  # Output: ग

PHP:

$char = "\x{0917}";
echo $char;  // Output: ग

Ruby:

char = "\u{0917}"
puts char  # Output: ग

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000917";  /* Display: ग */
}

HTML Decimal:

<p>HTML decimal: &#2327;</p>  <!-- Display: ग -->

HTML Hexadecimal:

<p>HTML hex: &#x0917;</p>  <!-- Display: ग -->

URL Encoding:

// ग URL encoding
https://unicodefinder.com/search.php?query=%E0%A4%97

Encodings

MD5:

c9b56ebff7dce1c5b2ec95b5a74f5932

SHA1:

d073d90f5cd815e26e07f961fe1a116a716d1850

Base64:

4KSX