C:
char c = '\u0657';
printf("%c\n", c); // Output: ٗ
JavaScript:
const char = '\u0657';
console.log(char); // Output: ٗ
Java:
char c = '\u0657';
System.out.println(c); // Output: ٗ
JSON:
{"text": "\u0657"} // Value: ٗ
Python:
char = '\u0657'
print(char) # Output: ٗ
Perl:
my $char = "\x{0657}";
print $char; # Output: ٗ
PHP:
$char = "\x{0657}";
echo $char; // Output: ٗ
Ruby:
char = "\u{0657}"
puts char # Output: ٗ
Rust:
let c = '\u{657}';
println!("{}", c); // Output: ٗ
Go:
char := '\u0657'
fmt.Printf("%c\n", char) // Output: ٗ
CSS:
/* CSS content property */
.element::before {
content: "\000657"; /* 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%97
MD5:
016ef996579da992aab20a48f66f8748
SHA1:
b6d40eec90ff702e6343191c1f36f3ebc473d92f
Base64:
2Zc=