C:
char c = '\u1319';
printf("%c\n", c); // Output: ጙ
JavaScript:
const char = '\u1319';
console.log(char); // Output: ጙ
Java:
char c = '\u1319';
System.out.println(c); // Output: ጙ
JSON:
{"text": "\u1319"} // Value: ጙ
Python:
char = '\u1319'
print(char) # Output: ጙ
Perl:
my $char = "\x{1319}";
print $char; # Output: ጙ
PHP:
$char = "\x{1319}";
echo $char; // Output: ጙ
Ruby:
char = "\u{1319}"
puts char # Output: ጙ
Rust:
let c = '\u{1319}';
println!("{}", c); // Output: ጙ
Go:
char := '\u1319'
fmt.Printf("%c\n", char) // Output: ጙ
CSS:
/* CSS content property */
.element::before {
content: "\001319"; /* 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%99
MD5:
bb282f204eac18b901b0cfdfd2ece353
SHA1:
eb78034601bb6038c3e0e3c7a1b02ddc04294985
Base64:
4YyZ