C:
char c = '\u0612';
printf("%c\n", c); // Output: ؒ
JavaScript:
const char = '\u0612';
console.log(char); // Output: ؒ
Java:
char c = '\u0612';
System.out.println(c); // Output: ؒ
JSON:
{"text": "\u0612"} // Value: ؒ
Python:
char = '\u0612'
print(char) # Output: ؒ
Perl:
my $char = "\x{0612}";
print $char; # Output: ؒ
PHP:
$char = "\x{0612}";
echo $char; // Output: ؒ
Ruby:
char = "\u{0612}"
puts char # Output: ؒ
Rust:
let c = '\u{612}';
println!("{}", c); // Output: ؒ
Go:
char := '\u0612'
fmt.Printf("%c\n", char) // Output: ؒ
CSS:
/* CSS content property */
.element::before {
content: "\000612"; /* 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=%D8%92
MD5:
8a89e386c8923dbd14580df925687c5a
SHA1:
e69e03adbfba475e1a03436c8c1803f022646695
Base64:
2JI=