C:
char c = '\u0664';
printf("%c\n", c); // Output: ٤
JavaScript:
const char = '\u0664';
console.log(char); // Output: ٤
Java:
char c = '\u0664';
System.out.println(c); // Output: ٤
JSON:
{"text": "\u0664"} // Value: ٤
Python:
char = '\u0664'
print(char) # Output: ٤
Perl:
my $char = "\x{0664}";
print $char; # Output: ٤
PHP:
$char = "\x{0664}";
echo $char; // Output: ٤
Ruby:
char = "\u{0664}"
puts char # Output: ٤
Rust:
let c = '\u{664}';
println!("{}", c); // Output: ٤
Go:
char := '\u0664'
fmt.Printf("%c\n", char) // Output: ٤
CSS:
/* CSS content property */
.element::before {
content: "\000664"; /* 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%A4
MD5:
67a094201a23899dcba46ff4cc5e9f4e
SHA1:
9734595dab442a0f750c7e4d4d65c241269355c6
Base64:
2aQ=