C:
char c = '\u1312';
printf("%c\n", c); // Output: ጒ
JavaScript:
const char = '\u1312';
console.log(char); // Output: ጒ
Java:
char c = '\u1312';
System.out.println(c); // Output: ጒ
JSON:
{"text": "\u1312"} // Value: ጒ
Python:
char = '\u1312'
print(char) # Output: ጒ
Perl:
my $char = "\x{1312}";
print $char; # Output: ጒ
PHP:
$char = "\x{1312}";
echo $char; // Output: ጒ
Ruby:
char = "\u{1312}"
puts char # Output: ጒ
Rust:
let c = '\u{1312}';
println!("{}", c); // Output: ጒ
Go:
char := '\u1312'
fmt.Printf("%c\n", char) // Output: ጒ
CSS:
/* CSS content property */
.element::before {
content: "\001312"; /* 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%92
MD5:
30fcc9bb6e608a2932b75f15e5e52035
SHA1:
adb6d1e9ed42ece04627e0b23a7e542cbcfea686
Base64:
4YyS