C:
char c = '\u0653';
printf("%c\n", c); // Output: ٓ
JavaScript:
const char = '\u0653';
console.log(char); // Output: ٓ
Java:
char c = '\u0653';
System.out.println(c); // Output: ٓ
JSON:
{"text": "\u0653"} // Value: ٓ
Python:
char = '\u0653'
print(char) # Output: ٓ
Perl:
my $char = "\x{0653}";
print $char; # Output: ٓ
PHP:
$char = "\x{0653}";
echo $char; // Output: ٓ
Ruby:
char = "\u{0653}"
puts char # Output: ٓ
Rust:
let c = '\u{653}';
println!("{}", c); // Output: ٓ
Go:
char := '\u0653'
fmt.Printf("%c\n", char) // Output: ٓ
CSS:
/* CSS content property */
.element::before {
content: "\000653"; /* 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%93
MD5:
8afa92f84b921800b4842393623d2da1
SHA1:
336248ca4adf1788fb29775e5a91b3a047b5e251
Base64:
2ZM=