C:
char c = '\u0615';
printf("%c\n", c); // Output: ؕ
JavaScript:
const char = '\u0615';
console.log(char); // Output: ؕ
Java:
char c = '\u0615';
System.out.println(c); // Output: ؕ
JSON:
{"text": "\u0615"} // Value: ؕ
Python:
char = '\u0615'
print(char) # Output: ؕ
Perl:
my $char = "\x{0615}";
print $char; # Output: ؕ
PHP:
$char = "\x{0615}";
echo $char; // Output: ؕ
Ruby:
char = "\u{0615}"
puts char # Output: ؕ
Rust:
let c = '\u{615}';
println!("{}", c); // Output: ؕ
Go:
char := '\u0615'
fmt.Printf("%c\n", char) // Output: ؕ
CSS:
/* CSS content property */
.element::before {
content: "\000615"; /* 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%95
MD5:
b638c3bb3c3df87f23efd10b4ad69ddf
SHA1:
280671c3770da14add7282ec3c97a736c84b54c1
Base64:
2JU=