C:
char c = '\u1263';
printf("%c\n", c); // Output: ባ
JavaScript:
const char = '\u1263';
console.log(char); // Output: ባ
Java:
char c = '\u1263';
System.out.println(c); // Output: ባ
JSON:
{"text": "\u1263"} // Value: ባ
Python:
char = '\u1263'
print(char) # Output: ባ
Perl:
my $char = "\x{1263}";
print $char; # Output: ባ
PHP:
$char = "\x{1263}";
echo $char; // Output: ባ
Ruby:
char = "\u{1263}"
puts char # Output: ባ
Rust:
let c = '\u{1263}';
println!("{}", c); // Output: ባ
Go:
char := '\u1263'
fmt.Printf("%c\n", char) // Output: ባ
CSS:
/* CSS content property */
.element::before {
content: "\001263"; /* 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%A3
MD5:
863390002dbfa1209ee7b0a2ac287c1d
SHA1:
530752fbe86fe66c84b8d728727dd0e0e6c84a3a
Base64:
4Ymj