Unicode Finder

"ْ" U+0652(ARABIC SUKUN)

ْ
U+0652
بلاک کا نام
Arabic
نام
ARABIC SUKUN

Programming

C
\u0652
JavaScript
\u0652
Java
\u0652
Json
\u0652
Python
\u0652
Perl
\x{0652}
PHP
\x{0652}
Ruby
\u{0652}
Rust
\u{652}
Go
\u0652

Web

CSS
\000652
HtmlDecimal
ْ
HtmlHexadecimal
ْ
Url
%D9%92

Code

MD5
a881003ac6aba8a1c745341b63067d0e
Sha1
629c5f00fbab8d21763699b70caec1a1b2d6f89c
Base64
2ZI=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0652';
console.log(char);  // Output: ْ

Java:

char c = '\u0652';
System.out.println(c);  // Output: ْ

JSON:

{"text": "\u0652"}  // Value: ْ

Python:

char = '\u0652'
print(char)  # Output: ْ

Perl:

my $char = "\x{0652}";
print $char;  # Output: ْ

PHP:

$char = "\x{0652}";
echo $char;  // Output: ْ

Ruby:

char = "\u{0652}"
puts char  # Output: ْ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000652";  /* Display: ْ */
}

HTML Decimal:

<p>HTML decimal: &#1618;</p>  <!-- Display: ْ -->

HTML Hexadecimal:

<p>HTML hex: &#x0652;</p>  <!-- Display: ْ -->

URL Encoding:

// ْ URL encoding
https://unicodefinder.com/search.php?query=%D9%92

Encodings

MD5:

a881003ac6aba8a1c745341b63067d0e

SHA1:

629c5f00fbab8d21763699b70caec1a1b2d6f89c

Base64:

2ZI=