C:
char c = '\u0625';
printf("%c\n", c); // Output: إ
JavaScript:
const char = '\u0625';
console.log(char); // Output: إ
Java:
char c = '\u0625';
System.out.println(c); // Output: إ
JSON:
{"text": "\u0625"} // Value: إ
Python:
char = '\u0625'
print(char) # Output: إ
Perl:
my $char = "\x{0625}";
print $char; # Output: إ
PHP:
$char = "\x{0625}";
echo $char; // Output: إ
Ruby:
char = "\u{0625}"
puts char # Output: إ
Rust:
let c = '\u{625}';
println!("{}", c); // Output: إ
Go:
char := '\u0625'
fmt.Printf("%c\n", char) // Output: إ
CSS:
/* CSS content property */
.element::before {
content: "\000625"; /* 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=%D8%A5
MD5:
d53f4fa19a1dcba86915e04e13f649c9
SHA1:
f2e556760ad98f2e1b8bb7ef6b213500f76561ae
Base64:
2KU=