C:
char c = '\u0606';
printf("%c\n", c); // Output: ؆
JavaScript:
const char = '\u0606';
console.log(char); // Output: ؆
Java:
char c = '\u0606';
System.out.println(c); // Output: ؆
JSON:
{"text": "\u0606"} // Value: ؆
Python:
char = '\u0606'
print(char) # Output: ؆
Perl:
my $char = "\x{0606}";
print $char; # Output: ؆
PHP:
$char = "\x{0606}";
echo $char; // Output: ؆
Ruby:
char = "\u{0606}"
puts char # Output: ؆
Rust:
let c = '\u{606}';
println!("{}", c); // Output: ؆
Go:
char := '\u0606'
fmt.Printf("%c\n", char) // Output: ؆
CSS:
/* CSS content property */
.element::before {
content: "\000606"; /* 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%86
MD5:
5ee39a204271fc7e057d710b66673beb
SHA1:
4adaff67e5ce46650bb188156e17f5627f4678a5
Base64:
2IY=