C:
char c = '\u1315';
printf("%c\n", c); // Output: ጕ
JavaScript:
const char = '\u1315';
console.log(char); // Output: ጕ
Java:
char c = '\u1315';
System.out.println(c); // Output: ጕ
JSON:
{"text": "\u1315"} // Value: ጕ
Python:
char = '\u1315'
print(char) # Output: ጕ
Perl:
my $char = "\x{1315}";
print $char; # Output: ጕ
PHP:
$char = "\x{1315}";
echo $char; // Output: ጕ
Ruby:
char = "\u{1315}"
puts char # Output: ጕ
Rust:
let c = '\u{1315}';
println!("{}", c); // Output: ጕ
Go:
char := '\u1315'
fmt.Printf("%c\n", char) // Output: ጕ
CSS:
/* CSS content property */
.element::before {
content: "\001315"; /* 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%95
MD5:
54c07e7fd582092a9b246435b2cb218a
SHA1:
19fafc5f7abf24ff810884a76e787d222acaaebe
Base64:
4YyV