C:
char c = '\u0668';
printf("%c\n", c); // Output: ٨
JavaScript:
const char = '\u0668';
console.log(char); // Output: ٨
Java:
char c = '\u0668';
System.out.println(c); // Output: ٨
JSON:
{"text": "\u0668"} // Value: ٨
Python:
char = '\u0668'
print(char) # Output: ٨
Perl:
my $char = "\x{0668}";
print $char; # Output: ٨
PHP:
$char = "\x{0668}";
echo $char; // Output: ٨
Ruby:
char = "\u{0668}"
puts char # Output: ٨
Rust:
let c = '\u{668}';
println!("{}", c); // Output: ٨
Go:
char := '\u0668'
fmt.Printf("%c\n", char) // Output: ٨
CSS:
/* CSS content property */
.element::before {
content: "\000668"; /* 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%A8
MD5:
2a2751f9ed1d0d6134243b8a5c998c7a
SHA1:
f7187c142b44cb45d80f6f59c6ec695de630ed84
Base64:
2ag=