C:
char c = '\u0663';
printf("%c\n", c); // Output: ٣
JavaScript:
const char = '\u0663';
console.log(char); // Output: ٣
Java:
char c = '\u0663';
System.out.println(c); // Output: ٣
JSON:
{"text": "\u0663"} // Value: ٣
Python:
char = '\u0663'
print(char) # Output: ٣
Perl:
my $char = "\x{0663}";
print $char; # Output: ٣
PHP:
$char = "\x{0663}";
echo $char; // Output: ٣
Ruby:
char = "\u{0663}"
puts char # Output: ٣
Rust:
let c = '\u{663}';
println!("{}", c); // Output: ٣
Go:
char := '\u0663'
fmt.Printf("%c\n", char) // Output: ٣
CSS:
/* CSS content property */
.element::before {
content: "\000663"; /* 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%A3
MD5:
745ea5a43dbad9549b6c312c3770b66f
SHA1:
ef67cd3541e9fcd06f8e439741e0589daee039e3
Base64:
2aM=