C:
char c = '\u12AB';
printf("%c\n", c); // Output: ካ
JavaScript:
const char = '\u12AB';
console.log(char); // Output: ካ
Java:
char c = '\u12AB';
System.out.println(c); // Output: ካ
JSON:
{"text": "\u12AB"} // Value: ካ
Python:
char = '\u12AB'
print(char) # Output: ካ
Perl:
my $char = "\x{12AB}";
print $char; # Output: ካ
PHP:
$char = "\x{12AB}";
echo $char; // Output: ካ
Ruby:
char = "\u{12AB}"
puts char # Output: ካ
Rust:
let c = '\u{12AB}';
println!("{}", c); // Output: ካ
Go:
char := '\u12AB'
fmt.Printf("%c\n", char) // Output: ካ
CSS:
/* CSS content property */
.element::before {
content: "\0012AB"; /* 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=%E1%8A%AB
MD5:
3de767a15071ccbff86857fae81a707c
SHA1:
2da2846c5adc32343d9a88827c8e376615ab086b
Base64:
4Yqr