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: ْ
CSS:
/* CSS content property */
.element::before {
content: "\000652"; /* Display: ْ */
}
HTML Decimal:
<p>HTML decimal: ْ</p> <!-- Display: ْ -->
HTML Hexadecimal:
<p>HTML hex: ْ</p> <!-- Display: ْ -->
URL Encoding:
// ْ URL encoding
https://unicodefinder.com/search.php?query=%D9%92
MD5:
a881003ac6aba8a1c745341b63067d0e
SHA1:
629c5f00fbab8d21763699b70caec1a1b2d6f89c
Base64:
2ZI=