C:
char c = '\u0655';
printf("%c\n", c); // Output: ٕ
JavaScript:
const char = '\u0655';
console.log(char); // Output: ٕ
Java:
char c = '\u0655';
System.out.println(c); // Output: ٕ
JSON:
{"text": "\u0655"} // Value: ٕ
Python:
char = '\u0655'
print(char) # Output: ٕ
Perl:
my $char = "\x{0655}";
print $char; # Output: ٕ
PHP:
$char = "\x{0655}";
echo $char; // Output: ٕ
Ruby:
char = "\u{0655}"
puts char # Output: ٕ
Rust:
let c = '\u{655}';
println!("{}", c); // Output: ٕ
Go:
char := '\u0655'
fmt.Printf("%c\n", char) // Output: ٕ
CSS:
/* CSS content property */
.element::before {
content: "\000655"; /* 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=%D9%95
MD5:
f65faa7d9636510a462a332c41b73f09
SHA1:
a28c33c4ce403b29e75e2adcb2d1001f75b43cc5
Base64:
2ZU=