Unicode Finder

"ঘ" U+0998(BENGALI LETTER GHA)

U+0998
ब्लॉक का नाम
Bengali
नाम
BENGALI LETTER GHA

Programming

C
\u0998
JavaScript
\u0998
Java
\u0998
Json
\u0998
Python
\u0998
Perl
\x{0998}
PHP
\x{0998}
Ruby
\u{0998}
Rust
\u{998}
Go
\u0998

Web

CSS
\000998
HtmlDecimal
ঘ
HtmlHexadecimal
ঘ
Url
%E0%A6%98

Code

MD5
d0ae25d8e825f1d073274b3a89a02321
Sha1
f9c29f25b9e3cf57829b8fed1b9295b73abe7f86
Base64
4KaY

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

Programming Languages

C:

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

JavaScript:

const char = '\u0998';
console.log(char);  // Output: ঘ

Java:

char c = '\u0998';
System.out.println(c);  // Output: ঘ

JSON:

{"text": "\u0998"}  // Value: ঘ

Python:

char = '\u0998'
print(char)  # Output: ঘ

Perl:

my $char = "\x{0998}";
print $char;  # Output: ঘ

PHP:

$char = "\x{0998}";
echo $char;  // Output: ঘ

Ruby:

char = "\u{0998}"
puts char  # Output: ঘ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000998";  /* Display: ঘ */
}

HTML Decimal:

<p>HTML decimal: &#2456;</p>  <!-- Display: ঘ -->

HTML Hexadecimal:

<p>HTML hex: &#x0998;</p>  <!-- Display: ঘ -->

URL Encoding:

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

Encodings

MD5:

d0ae25d8e825f1d073274b3a89a02321

SHA1:

f9c29f25b9e3cf57829b8fed1b9295b73abe7f86

Base64:

4KaY