C:
char c = '\u0790';
printf("%c\n", c); // Output: ސ
JavaScript:
const char = '\u0790';
console.log(char); // Output: ސ
Java:
char c = '\u0790';
System.out.println(c); // Output: ސ
JSON:
{"text": "\u0790"} // Value: ސ
Python:
char = '\u0790'
print(char) # Output: ސ
Perl:
my $char = "\x{0790}";
print $char; # Output: ސ
PHP:
$char = "\x{0790}";
echo $char; // Output: ސ
Ruby:
char = "\u{0790}"
puts char # Output: ސ
Rust:
let c = '\u{790}';
println!("{}", c); // Output: ސ
Go:
char := '\u0790'
fmt.Printf("%c\n", char) // Output: ސ
CSS:
/* CSS content property */
.element::before {
content: "\000790"; /* 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%90
MD5:
45defab03c8cdbf19ae25fe0df5604e5
SHA1:
3b7bcd08ff77391207c8664e17c358b689e8cea1
Base64:
3pA=