C:
char c = '\u0608';
printf("%c\n", c); // Output: ؈
JavaScript:
const char = '\u0608';
console.log(char); // Output: ؈
Java:
char c = '\u0608';
System.out.println(c); // Output: ؈
JSON:
{"text": "\u0608"} // Value: ؈
Python:
char = '\u0608'
print(char) # Output: ؈
Perl:
my $char = "\x{0608}";
print $char; # Output: ؈
PHP:
$char = "\x{0608}";
echo $char; // Output: ؈
Ruby:
char = "\u{0608}"
puts char # Output: ؈
Rust:
let c = '\u{608}';
println!("{}", c); // Output: ؈
Go:
char := '\u0608'
fmt.Printf("%c\n", char) // Output: ؈
CSS:
/* CSS content property */
.element::before {
content: "\000608"; /* 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%88
MD5:
5517f708e802a86f3a74d26ba4c86840
SHA1:
dfe93b8f2f306d2c9a7e72064fd94aec766df60a
Base64:
2Ig=