Unicode Finder

"ݴ" U+0774(ARABIC LETTER ALEF WITH EXTENDED ARABIC-INDIC DIGIT THREE ABOVE)

ݴ
U+0774
Block Name
Arabic Supplement
Name
ARABIC LETTER ALEF WITH EXTENDED ARABIC-INDIC DIGIT THREE ABOVE

Programming

C
\u0774
JavaScript
\u0774
Java
\u0774
Json
\u0774
Python
\u0774
Perl
\x{0774}
PHP
\x{0774}
Ruby
\u{0774}
Rust
\u{774}
Go
\u0774

Web

CSS
\000774
HtmlDecimal
ݴ
HtmlHexadecimal
ݴ
Url
%DD%B4

Code

MD5
1a9bab99864b179803cc2b3e1a7afa58
Sha1
77998e0183c3cdee57ab14914604a9360328366a
Base64
3bQ=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0774';
console.log(char);  // Output: ݴ

Java:

char c = '\u0774';
System.out.println(c);  // Output: ݴ

JSON:

{"text": "\u0774"}  // Value: ݴ

Python:

char = '\u0774'
print(char)  # Output: ݴ

Perl:

my $char = "\x{0774}";
print $char;  # Output: ݴ

PHP:

$char = "\x{0774}";
echo $char;  // Output: ݴ

Ruby:

char = "\u{0774}"
puts char  # Output: ݴ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000774";  /* Display: ݴ */
}

HTML Decimal:

<p>HTML decimal: &#1908;</p>  <!-- Display: ݴ -->

HTML Hexadecimal:

<p>HTML hex: &#x0774;</p>  <!-- Display: ݴ -->

URL Encoding:

// ݴ URL encoding
https://unicodefinder.com/search.php?query=%DD%B4

Encodings

MD5:

1a9bab99864b179803cc2b3e1a7afa58

SHA1:

77998e0183c3cdee57ab14914604a9360328366a

Base64:

3bQ=