Unicode Finder

"ޙ" U+0799(THAANA LETTER HHAA)

ޙ
U+0799
بلاک کا نام
Thaana
نام
THAANA LETTER HHAA

Programming

C
\u0799
JavaScript
\u0799
Java
\u0799
Json
\u0799
Python
\u0799
Perl
\x{0799}
PHP
\x{0799}
Ruby
\u{0799}
Rust
\u{799}
Go
\u0799

Web

CSS
\000799
HtmlDecimal
ޙ
HtmlHexadecimal
ޙ
Url
%DE%99

Code

MD5
442f4fe8549c2640a94180dc47136a79
Sha1
79e77f3ea2c1d7b0cb6da9270ba62f21cf55d631
Base64
3pk=

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u0799';
console.log(char);  // Output: ޙ

Java:

char c = '\u0799';
System.out.println(c);  // Output: ޙ

JSON:

{"text": "\u0799"}  // Value: ޙ

Python:

char = '\u0799'
print(char)  # Output: ޙ

Perl:

my $char = "\x{0799}";
print $char;  # Output: ޙ

PHP:

$char = "\x{0799}";
echo $char;  // Output: ޙ

Ruby:

char = "\u{0799}"
puts char  # Output: ޙ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000799";  /* Display: ޙ */
}

HTML Decimal:

<p>HTML decimal: &#1945;</p>  <!-- Display: ޙ -->

HTML Hexadecimal:

<p>HTML hex: &#x0799;</p>  <!-- Display: ޙ -->

URL Encoding:

// ޙ URL encoding
https://unicodefinder.com/search.php?query=%DE%99

Encodings

MD5:

442f4fe8549c2640a94180dc47136a79

SHA1:

79e77f3ea2c1d7b0cb6da9270ba62f21cf55d631

Base64:

3pk=