C:
char c = '\u0609';
printf("%c\n", c); // Output: ؉
JavaScript:
const char = '\u0609';
console.log(char); // Output: ؉
Java:
char c = '\u0609';
System.out.println(c); // Output: ؉
JSON:
{"text": "\u0609"} // Value: ؉
Python:
char = '\u0609'
print(char) # Output: ؉
Perl:
my $char = "\x{0609}";
print $char; # Output: ؉
PHP:
$char = "\x{0609}";
echo $char; // Output: ؉
Ruby:
char = "\u{0609}"
puts char # Output: ؉
Rust:
let c = '\u{609}';
println!("{}", c); // Output: ؉
Go:
char := '\u0609'
fmt.Printf("%c\n", char) // Output: ؉
CSS:
/* CSS content property */
.element::before {
content: "\000609"; /* 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%89
MD5:
f32d7525c0a7fb464a580ab7a84ce0e2
SHA1:
c64ba4e07ca41c11cfe56b73a2447cce540cd9ff
Base64:
2Ik=