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