C:
char c = '\u1306';
printf("%c\n", c); // Output: ጆ
JavaScript:
const char = '\u1306';
console.log(char); // Output: ጆ
Java:
char c = '\u1306';
System.out.println(c); // Output: ጆ
JSON:
{"text": "\u1306"} // Value: ጆ
Python:
char = '\u1306'
print(char) # Output: ጆ
Perl:
my $char = "\x{1306}";
print $char; # Output: ጆ
PHP:
$char = "\x{1306}";
echo $char; // Output: ጆ
Ruby:
char = "\u{1306}"
puts char # Output: ጆ
Rust:
let c = '\u{1306}';
println!("{}", c); // Output: ጆ
Go:
char := '\u1306'
fmt.Printf("%c\n", char) // Output: ጆ
CSS:
/* CSS content property */
.element::before {
content: "\001306"; /* 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%86
MD5:
6ce26bcd5ff52fe5c76a488d14467e5f
SHA1:
54eaf6648f744cab460b5339ba292d9a3d298137
Base64:
4YyG