C:
char c = '\u07E9';
printf("%c\n", c); // Output: ߩ
JavaScript:
const char = '\u07E9';
console.log(char); // Output: ߩ
Java:
char c = '\u07E9';
System.out.println(c); // Output: ߩ
JSON:
{"text": "\u07E9"} // Value: ߩ
Python:
char = '\u07E9'
print(char) # Output: ߩ
Perl:
my $char = "\x{07E9}";
print $char; # Output: ߩ
PHP:
$char = "\x{07E9}";
echo $char; // Output: ߩ
Ruby:
char = "\u{07E9}"
puts char # Output: ߩ
Rust:
let c = '\u{7E9}';
println!("{}", c); // Output: ߩ
Go:
char := '\u07E9'
fmt.Printf("%c\n", char) // Output: ߩ
CSS:
/* CSS content property */
.element::before {
content: "\0007E9"; /* 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=%DF%A9
MD5:
a01631e38d951b20ea916e71abfa7479
SHA1:
aa7cc12726cbf025cbe6aa3f90b1cf78498d2111
Base64:
36k=