C:
char c = '\u0665';
printf("%c\n", c); // Output: ٥
JavaScript:
const char = '\u0665';
console.log(char); // Output: ٥
Java:
char c = '\u0665';
System.out.println(c); // Output: ٥
JSON:
{"text": "\u0665"} // Value: ٥
Python:
char = '\u0665'
print(char) # Output: ٥
Perl:
my $char = "\x{0665}";
print $char; # Output: ٥
PHP:
$char = "\x{0665}";
echo $char; // Output: ٥
Ruby:
char = "\u{0665}"
puts char # Output: ٥
Rust:
let c = '\u{665}';
println!("{}", c); // Output: ٥
Go:
char := '\u0665'
fmt.Printf("%c\n", char) // Output: ٥
CSS:
/* CSS content property */
.element::before {
content: "\000665"; /* 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%A5
MD5:
175bda52748e9f5dbddd0bb342e89b69
SHA1:
6b6dafa27805a1a921da96e41a02d5fb0ce2239e
Base64:
2aU=