C:
char c = '\u0610';
printf("%c\n", c); // Output: ؐ
JavaScript:
const char = '\u0610';
console.log(char); // Output: ؐ
Java:
char c = '\u0610';
System.out.println(c); // Output: ؐ
JSON:
{"text": "\u0610"} // Value: ؐ
Python:
char = '\u0610'
print(char) # Output: ؐ
Perl:
my $char = "\x{0610}";
print $char; # Output: ؐ
PHP:
$char = "\x{0610}";
echo $char; // Output: ؐ
Ruby:
char = "\u{0610}"
puts char # Output: ؐ
Rust:
let c = '\u{610}';
println!("{}", c); // Output: ؐ
Go:
char := '\u0610'
fmt.Printf("%c\n", char) // Output: ؐ
CSS:
/* CSS content property */
.element::before {
content: "\000610"; /* 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%90
MD5:
bf5adc22c00459ec914a41fa32733235
SHA1:
b6ade6c84820fd787d459de40c1a95cb70607655
Base64:
2JA=