C:
char c = '\u12AD';
printf("%c\n", c); // Output: ክ
JavaScript:
const char = '\u12AD';
console.log(char); // Output: ክ
Java:
char c = '\u12AD';
System.out.println(c); // Output: ክ
JSON:
{"text": "\u12AD"} // Value: ክ
Python:
char = '\u12AD'
print(char) # Output: ክ
Perl:
my $char = "\x{12AD}";
print $char; # Output: ክ
PHP:
$char = "\x{12AD}";
echo $char; // Output: ክ
Ruby:
char = "\u{12AD}"
puts char # Output: ክ
Rust:
let c = '\u{12AD}';
println!("{}", c); // Output: ክ
Go:
char := '\u12AD'
fmt.Printf("%c\n", char) // Output: ክ
CSS:
/* CSS content property */
.element::before {
content: "\0012AD"; /* 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%AD
MD5:
803c1a86592bf6cb0c3e38dea6f151e9
SHA1:
9fe21248c1a8c848d6423a84b1af51c8100427f8
Base64:
4Yqt