C:
char c = '\u0669';
printf("%c\n", c); // Output: ٩
JavaScript:
const char = '\u0669';
console.log(char); // Output: ٩
Java:
char c = '\u0669';
System.out.println(c); // Output: ٩
JSON:
{"text": "\u0669"} // Value: ٩
Python:
char = '\u0669'
print(char) # Output: ٩
Perl:
my $char = "\x{0669}";
print $char; # Output: ٩
PHP:
$char = "\x{0669}";
echo $char; // Output: ٩
Ruby:
char = "\u{0669}"
puts char # Output: ٩
Rust:
let c = '\u{669}';
println!("{}", c); // Output: ٩
Go:
char := '\u0669'
fmt.Printf("%c\n", char) // Output: ٩
CSS:
/* CSS content property */
.element::before {
content: "\000669"; /* 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%A9
MD5:
b3fa8d7da03095040c98361d4e26ecc5
SHA1:
845bbfe5ecf50c4a69ec05269f9ee38186f9458b
Base64:
2ak=