C:
char c = '\u0622';
printf("%c\n", c); // Output: آ
JavaScript:
const char = '\u0622';
console.log(char); // Output: آ
Java:
char c = '\u0622';
System.out.println(c); // Output: آ
JSON:
{"text": "\u0622"} // Value: آ
Python:
char = '\u0622'
print(char) # Output: آ
Perl:
my $char = "\x{0622}";
print $char; # Output: آ
PHP:
$char = "\x{0622}";
echo $char; // Output: آ
Ruby:
char = "\u{0622}"
puts char # Output: آ
Rust:
let c = '\u{622}';
println!("{}", c); // Output: آ
Go:
char := '\u0622'
fmt.Printf("%c\n", char) // Output: آ
CSS:
/* CSS content property */
.element::before {
content: "\000622"; /* 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%A2
MD5:
0dbce1e866dbde21dba24419b7cbc790
SHA1:
f2f2633911d73e9fd151aecdf31daa5504b6176d
Base64:
2KI=