C:
char c = '\u1266';
printf("%c\n", c); // Output: ቦ
JavaScript:
const char = '\u1266';
console.log(char); // Output: ቦ
Java:
char c = '\u1266';
System.out.println(c); // Output: ቦ
JSON:
{"text": "\u1266"} // Value: ቦ
Python:
char = '\u1266'
print(char) # Output: ቦ
Perl:
my $char = "\x{1266}";
print $char; # Output: ቦ
PHP:
$char = "\x{1266}";
echo $char; // Output: ቦ
Ruby:
char = "\u{1266}"
puts char # Output: ቦ
Rust:
let c = '\u{1266}';
println!("{}", c); // Output: ቦ
Go:
char := '\u1266'
fmt.Printf("%c\n", char) // Output: ቦ
CSS:
/* CSS content property */
.element::before {
content: "\001266"; /* 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%89%A6
MD5:
2ff13a2d78197f6cb3034c1a85ab6e22
SHA1:
db0e3a51d85b93b195269dfe1f0a272f418bb699
Base64:
4Ymm