C:
char c = '\u0787';
printf("%c\n", c); // Output: އ
JavaScript:
const char = '\u0787';
console.log(char); // Output: އ
Java:
char c = '\u0787';
System.out.println(c); // Output: އ
JSON:
{"text": "\u0787"} // Value: އ
Python:
char = '\u0787'
print(char) # Output: އ
Perl:
my $char = "\x{0787}";
print $char; # Output: އ
PHP:
$char = "\x{0787}";
echo $char; // Output: އ
Ruby:
char = "\u{0787}"
puts char # Output: އ
Rust:
let c = '\u{787}';
println!("{}", c); // Output: އ
Go:
char := '\u0787'
fmt.Printf("%c\n", char) // Output: އ
CSS:
/* CSS content property */
.element::before {
content: "\000787"; /* 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%87
MD5:
70a111f332a412bdeb0097684cd4bcae
SHA1:
26fbe44c5c67b829aa2d9a5dcf78885f8c05f434
Base64:
3oc=