C:
char c = '\u078F';
printf("%c\n", c); // Output: ޏ
JavaScript:
const char = '\u078F';
console.log(char); // Output: ޏ
Java:
char c = '\u078F';
System.out.println(c); // Output: ޏ
JSON:
{"text": "\u078F"} // Value: ޏ
Python:
char = '\u078F'
print(char) # Output: ޏ
Perl:
my $char = "\x{078F}";
print $char; # Output: ޏ
PHP:
$char = "\x{078F}";
echo $char; // Output: ޏ
Ruby:
char = "\u{078F}"
puts char # Output: ޏ
Rust:
let c = '\u{78F}';
println!("{}", c); // Output: ޏ
Go:
char := '\u078F'
fmt.Printf("%c\n", char) // Output: ޏ
CSS:
/* CSS content property */
.element::before {
content: "\00078F"; /* 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%8F
MD5:
3c8d987671f1352b349e86753797e4fd
SHA1:
f85b061f708a4336bce6ff62a0260c29648fdac4
Base64:
3o8=