Unicode Finder

"ޫ" U+07AB(THAANA OOBOOFILI)

ޫ
U+07AB
بلاک کا نام
Thaana
نام
THAANA OOBOOFILI

Programming

C
\u07AB
JavaScript
\u07AB
Java
\u07AB
Json
\u07AB
Python
\u07AB
Perl
\x{07AB}
PHP
\x{07AB}
Ruby
\u{07AB}
Rust
\u{7AB}
Go
\u07AB

Web

CSS
\0007AB
HtmlDecimal
ޫ
HtmlHexadecimal
ޫ
Url
%DE%AB

Code

MD5
777ca72196c504a3895bf437c683e798
Sha1
025a4397ea338e254ef2d4333598f3b54e527771
Base64
3qs=

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

Programming Languages

C:

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

JavaScript:

const char = '\u07AB';
console.log(char);  // Output: ޫ

Java:

char c = '\u07AB';
System.out.println(c);  // Output: ޫ

JSON:

{"text": "\u07AB"}  // Value: ޫ

Python:

char = '\u07AB'
print(char)  # Output: ޫ

Perl:

my $char = "\x{07AB}";
print $char;  # Output: ޫ

PHP:

$char = "\x{07AB}";
echo $char;  // Output: ޫ

Ruby:

char = "\u{07AB}"
puts char  # Output: ޫ

Rust:

let c = '\u{7AB}';
println!("{}", c);  // Output: ޫ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0007AB";  /* Display: ޫ */
}

HTML Decimal:

<p>HTML decimal: &#1963;</p>  <!-- Display: ޫ -->

HTML Hexadecimal:

<p>HTML hex: &#x07AB;</p>  <!-- Display: ޫ -->

URL Encoding:

// ޫ URL encoding
https://unicodefinder.com/search.php?query=%DE%AB

Encodings

MD5:

777ca72196c504a3895bf437c683e798

SHA1:

025a4397ea338e254ef2d4333598f3b54e527771

Base64:

3qs=