C:
char c = '\u0660';
printf("%c\n", c); // Output: ٠
JavaScript:
const char = '\u0660';
console.log(char); // Output: ٠
Java:
char c = '\u0660';
System.out.println(c); // Output: ٠
JSON:
{"text": "\u0660"} // Value: ٠
Python:
char = '\u0660'
print(char) # Output: ٠
Perl:
my $char = "\x{0660}";
print $char; # Output: ٠
PHP:
$char = "\x{0660}";
echo $char; // Output: ٠
Ruby:
char = "\u{0660}"
puts char # Output: ٠
Rust:
let c = '\u{660}';
println!("{}", c); // Output: ٠
Go:
char := '\u0660'
fmt.Printf("%c\n", char) // Output: ٠
CSS:
/* CSS content property */
.element::before {
content: "\000660"; /* 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%A0
MD5:
06c9d354b352fd6f9d811b47ed9bc835
SHA1:
23f810bed99a5730366663aa3b79c24857cc4be2
Base64:
2aA=