C:
char c = '\u0667';
printf("%c\n", c); // Output: ٧
JavaScript:
const char = '\u0667';
console.log(char); // Output: ٧
Java:
char c = '\u0667';
System.out.println(c); // Output: ٧
JSON:
{"text": "\u0667"} // Value: ٧
Python:
char = '\u0667'
print(char) # Output: ٧
Perl:
my $char = "\x{0667}";
print $char; # Output: ٧
PHP:
$char = "\x{0667}";
echo $char; // Output: ٧
Ruby:
char = "\u{0667}"
puts char # Output: ٧
Rust:
let c = '\u{667}';
println!("{}", c); // Output: ٧
Go:
char := '\u0667'
fmt.Printf("%c\n", char) // Output: ٧
CSS:
/* CSS content property */
.element::before {
content: "\000667"; /* 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%A7
MD5:
82c62e1b6a771c45e3eb67f877c79191
SHA1:
0521b032db86aa7a18c8e28fec4bdef3c542d9e8
Base64:
2ac=