C:
char c = '\u1240';
printf("%c\n", c); // Output: ቀ
JavaScript:
const char = '\u1240';
console.log(char); // Output: ቀ
Java:
char c = '\u1240';
System.out.println(c); // Output: ቀ
JSON:
{"text": "\u1240"} // Value: ቀ
Python:
char = '\u1240'
print(char) # Output: ቀ
Perl:
my $char = "\x{1240}";
print $char; # Output: ቀ
PHP:
$char = "\x{1240}";
echo $char; // Output: ቀ
Ruby:
char = "\u{1240}"
puts char # Output: ቀ
Rust:
let c = '\u{1240}';
println!("{}", c); // Output: ቀ
Go:
char := '\u1240'
fmt.Printf("%c\n", char) // Output: ቀ
CSS:
/* CSS content property */
.element::before {
content: "\001240"; /* 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%89%80
MD5:
f7d29f41e33a76af2dc11f550c4be936
SHA1:
cdc92a1b814514ead14e7b1b6190af92cc596028
Base64:
4YmA