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