C:
char c = '\u0789';
printf("%c\n", c); // Output: މ
JavaScript:
const char = '\u0789';
console.log(char); // Output: މ
Java:
char c = '\u0789';
System.out.println(c); // Output: މ
JSON:
{"text": "\u0789"} // Value: މ
Python:
char = '\u0789'
print(char) # Output: މ
Perl:
my $char = "\x{0789}";
print $char; # Output: މ
PHP:
$char = "\x{0789}";
echo $char; // Output: މ
Ruby:
char = "\u{0789}"
puts char # Output: މ
Rust:
let c = '\u{789}';
println!("{}", c); // Output: މ
Go:
char := '\u0789'
fmt.Printf("%c\n", char) // Output: މ
CSS:
/* CSS content property */
.element::before {
content: "\000789"; /* 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=%DE%89
MD5:
a6765e0fc4e7da026417b99d87aaff4c
SHA1:
f66149432079a1ac10eafcf0ac5f63c17ca9d54d
Base64:
3ok=