C:
char c = '\u0624';
printf("%c\n", c); // Output: ؤ
JavaScript:
const char = '\u0624';
console.log(char); // Output: ؤ
Java:
char c = '\u0624';
System.out.println(c); // Output: ؤ
JSON:
{"text": "\u0624"} // Value: ؤ
Python:
char = '\u0624'
print(char) # Output: ؤ
Perl:
my $char = "\x{0624}";
print $char; # Output: ؤ
PHP:
$char = "\x{0624}";
echo $char; // Output: ؤ
Ruby:
char = "\u{0624}"
puts char # Output: ؤ
Rust:
let c = '\u{624}';
println!("{}", c); // Output: ؤ
Go:
char := '\u0624'
fmt.Printf("%c\n", char) // Output: ؤ
CSS:
/* CSS content property */
.element::before {
content: "\000624"; /* 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%A4
MD5:
85fb39b735ea0559e3be7479e85e3225
SHA1:
b8ff4bd502af174b08eb73f57e70b9ff040b41f2
Base64:
2KQ=