C:
char c = '\u0666';
printf("%c\n", c); // Output: ٦
JavaScript:
const char = '\u0666';
console.log(char); // Output: ٦
Java:
char c = '\u0666';
System.out.println(c); // Output: ٦
JSON:
{"text": "\u0666"} // Value: ٦
Python:
char = '\u0666'
print(char) # Output: ٦
Perl:
my $char = "\x{0666}";
print $char; # Output: ٦
PHP:
$char = "\x{0666}";
echo $char; // Output: ٦
Ruby:
char = "\u{0666}"
puts char # Output: ٦
Rust:
let c = '\u{666}';
println!("{}", c); // Output: ٦
Go:
char := '\u0666'
fmt.Printf("%c\n", char) // Output: ٦
CSS:
/* CSS content property */
.element::before {
content: "\000666"; /* 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%A6
MD5:
ba80e1463818aac172c8e36797a5071d
SHA1:
9bed47fe7b20e30e0bc8b1cfc8704c76a33f10ea
Base64:
2aY=