Unicode Finder

"ݫ" U+076B(ARABIC LETTER REH WITH TWO DOTS VERTICALLY ABOVE)

ݫ
U+076B
Bloknaam
Arabic Supplement
Naam
ARABIC LETTER REH WITH TWO DOTS VERTICALLY ABOVE

Programming

C
\u076B
JavaScript
\u076B
Java
\u076B
Json
\u076B
Python
\u076B
Perl
\x{076B}
PHP
\x{076B}
Ruby
\u{076B}
Rust
\u{76B}
Go
\u076B

Web

CSS
\00076B
HtmlDecimal
ݫ
HtmlHexadecimal
ݫ
Url
%DD%AB

Code

MD5
c5471fcbdd70dc6ec77b2c302559dc29
Sha1
b54392b45772af92f950686cd2de4101caee0168
Base64
3as=

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u076B';
console.log(char);  // Output: ݫ

Java:

char c = '\u076B';
System.out.println(c);  // Output: ݫ

JSON:

{"text": "\u076B"}  // Value: ݫ

Python:

char = '\u076B'
print(char)  # Output: ݫ

Perl:

my $char = "\x{076B}";
print $char;  # Output: ݫ

PHP:

$char = "\x{076B}";
echo $char;  // Output: ݫ

Ruby:

char = "\u{076B}"
puts char  # Output: ݫ

Rust:

let c = '\u{76B}';
println!("{}", c);  // Output: ݫ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00076B";  /* Display: ݫ */
}

HTML Decimal:

<p>HTML decimal: &#1899;</p>  <!-- Display: ݫ -->

HTML Hexadecimal:

<p>HTML hex: &#x076B;</p>  <!-- Display: ݫ -->

URL Encoding:

// ݫ URL encoding
https://unicodefinder.com/search.php?query=%DD%AB

Encodings

MD5:

c5471fcbdd70dc6ec77b2c302559dc29

SHA1:

b54392b45772af92f950686cd2de4101caee0168

Base64:

3as=