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