C:
char c = '\u0658';
printf("%c\n", c); // Output: ٘
JavaScript:
const char = '\u0658';
console.log(char); // Output: ٘
Java:
char c = '\u0658';
System.out.println(c); // Output: ٘
JSON:
{"text": "\u0658"} // Value: ٘
Python:
char = '\u0658'
print(char) # Output: ٘
Perl:
my $char = "\x{0658}";
print $char; # Output: ٘
PHP:
$char = "\x{0658}";
echo $char; // Output: ٘
Ruby:
char = "\u{0658}"
puts char # Output: ٘
Rust:
let c = '\u{658}';
println!("{}", c); // Output: ٘
Go:
char := '\u0658'
fmt.Printf("%c\n", char) // Output: ٘
CSS:
/* CSS content property */
.element::before {
content: "\000658"; /* 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%98
MD5:
6e55e7765ccd6575ac9e4eeb441b8266
SHA1:
a5cf974b9121f261600e96a378caf64bd355ed37
Base64:
2Zg=