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