C:
char c = '\u0796';
printf("%c\n", c); // Output: ޖ
JavaScript:
const char = '\u0796';
console.log(char); // Output: ޖ
Java:
char c = '\u0796';
System.out.println(c); // Output: ޖ
JSON:
{"text": "\u0796"} // Value: ޖ
Python:
char = '\u0796'
print(char) # Output: ޖ
Perl:
my $char = "\x{0796}";
print $char; # Output: ޖ
PHP:
$char = "\x{0796}";
echo $char; // Output: ޖ
Ruby:
char = "\u{0796}"
puts char # Output: ޖ
Rust:
let c = '\u{796}';
println!("{}", c); // Output: ޖ
Go:
char := '\u0796'
fmt.Printf("%c\n", char) // Output: ޖ
CSS:
/* CSS content property */
.element::before {
content: "\000796"; /* 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=%DE%96
MD5:
5eb407b9c07f62a0757b1d91cc4cca42
SHA1:
37f49b69ee37ded0ce79187340023b3ccdb0af57
Base64:
3pY=