C:
char c = '\u0613';
printf("%c\n", c); // Output: ؓ
JavaScript:
const char = '\u0613';
console.log(char); // Output: ؓ
Java:
char c = '\u0613';
System.out.println(c); // Output: ؓ
JSON:
{"text": "\u0613"} // Value: ؓ
Python:
char = '\u0613'
print(char) # Output: ؓ
Perl:
my $char = "\x{0613}";
print $char; # Output: ؓ
PHP:
$char = "\x{0613}";
echo $char; // Output: ؓ
Ruby:
char = "\u{0613}"
puts char # Output: ؓ
Rust:
let c = '\u{613}';
println!("{}", c); // Output: ؓ
Go:
char := '\u0613'
fmt.Printf("%c\n", char) // Output: ؓ
CSS:
/* CSS content property */
.element::before {
content: "\000613"; /* 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%93
MD5:
2fc3af10db2083d00e32d6a46da03502
SHA1:
13b61daf5aeae6af98619dd6a2f91444e4c67233
Base64:
2JM=