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