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