Unicode Finder

"ۗ" U+06D7(ARABIC SMALL HIGH LIGATURE QAF WITH LAM WITH ALEF MAKSURA)

ۗ
U+06D7
بلاک کا نام
Arabic
نام
ARABIC SMALL HIGH LIGATURE QAF WITH LAM WITH ALEF MAKSURA

Programming

C
\u06D7
JavaScript
\u06D7
Java
\u06D7
Json
\u06D7
Python
\u06D7
Perl
\x{06D7}
PHP
\x{06D7}
Ruby
\u{06D7}
Rust
\u{6D7}
Go
\u06D7

Web

CSS
\0006D7
HtmlDecimal
ۗ
HtmlHexadecimal
ۗ
Url
%DB%97

Code

MD5
a9b3652b90bbb413addf01c2cc390c68
Sha1
6a5bde5029a6d799f1415c5870bcd9f13c6b420a
Base64
25c=

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

Programming Languages

C:

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

JavaScript:

const char = '\u06D7';
console.log(char);  // Output: ۗ

Java:

char c = '\u06D7';
System.out.println(c);  // Output: ۗ

JSON:

{"text": "\u06D7"}  // Value: ۗ

Python:

char = '\u06D7'
print(char)  # Output: ۗ

Perl:

my $char = "\x{06D7}";
print $char;  # Output: ۗ

PHP:

$char = "\x{06D7}";
echo $char;  // Output: ۗ

Ruby:

char = "\u{06D7}"
puts char  # Output: ۗ

Rust:

let c = '\u{6D7}';
println!("{}", c);  // Output: ۗ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0006D7";  /* Display: ۗ */
}

HTML Decimal:

<p>HTML decimal: &#1751;</p>  <!-- Display: ۗ -->

HTML Hexadecimal:

<p>HTML hex: &#x06D7;</p>  <!-- Display: ۗ -->

URL Encoding:

// ۗ URL encoding
https://unicodefinder.com/search.php?query=%DB%97

Encodings

MD5:

a9b3652b90bbb413addf01c2cc390c68

SHA1:

6a5bde5029a6d799f1415c5870bcd9f13c6b420a

Base64:

25c=