C:
char c = '\u1262';
printf("%c\n", c); // Output: ቢ
JavaScript:
const char = '\u1262';
console.log(char); // Output: ቢ
Java:
char c = '\u1262';
System.out.println(c); // Output: ቢ
JSON:
{"text": "\u1262"} // Value: ቢ
Python:
char = '\u1262'
print(char) # Output: ቢ
Perl:
my $char = "\x{1262}";
print $char; # Output: ቢ
PHP:
$char = "\x{1262}";
echo $char; // Output: ቢ
Ruby:
char = "\u{1262}"
puts char # Output: ቢ
Rust:
let c = '\u{1262}';
println!("{}", c); // Output: ቢ
Go:
char := '\u1262'
fmt.Printf("%c\n", char) // Output: ቢ
CSS:
/* CSS content property */
.element::before {
content: "\001262"; /* 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%A2
MD5:
9e102830722db64ece517365e0c73da4
SHA1:
38ae17c2f2e5748b378484d18eff2336c737ffb0
Base64:
4Ymi