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