C:
char c = '\u0623';
printf("%c\n", c); // Output: أ
JavaScript:
const char = '\u0623';
console.log(char); // Output: أ
Java:
char c = '\u0623';
System.out.println(c); // Output: أ
JSON:
{"text": "\u0623"} // Value: أ
Python:
char = '\u0623'
print(char) # Output: أ
Perl:
my $char = "\x{0623}";
print $char; # Output: أ
PHP:
$char = "\x{0623}";
echo $char; // Output: أ
Ruby:
char = "\u{0623}"
puts char # Output: أ
Rust:
let c = '\u{623}';
println!("{}", c); // Output: أ
Go:
char := '\u0623'
fmt.Printf("%c\n", char) // Output: أ
CSS:
/* CSS content property */
.element::before {
content: "\000623"; /* 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%A3
MD5:
1d0e559c306e1fb8aa2db2b4b07e9cb6
SHA1:
5326c0369eabf67c578676c89299598545a83ca8
Base64:
2KM=