C:
char c = '\u1323';
printf("%c\n", c); // Output: ጣ
JavaScript:
const char = '\u1323';
console.log(char); // Output: ጣ
Java:
char c = '\u1323';
System.out.println(c); // Output: ጣ
JSON:
{"text": "\u1323"} // Value: ጣ
Python:
char = '\u1323'
print(char) # Output: ጣ
Perl:
my $char = "\x{1323}";
print $char; # Output: ጣ
PHP:
$char = "\x{1323}";
echo $char; // Output: ጣ
Ruby:
char = "\u{1323}"
puts char # Output: ጣ
Rust:
let c = '\u{1323}';
println!("{}", c); // Output: ጣ
Go:
char := '\u1323'
fmt.Printf("%c\n", char) // Output: ጣ
CSS:
/* CSS content property */
.element::before {
content: "\001323"; /* 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%8C%A3
MD5:
3bc5b93d9071ba198d3bdd343e586978
SHA1:
3e353da161b69c183f20de4994309f5355ee38e3
Base64:
4Yyj