C:
char c = '\u1260';
printf("%c\n", c); // Output: በ
JavaScript:
const char = '\u1260';
console.log(char); // Output: በ
Java:
char c = '\u1260';
System.out.println(c); // Output: በ
JSON:
{"text": "\u1260"} // Value: በ
Python:
char = '\u1260'
print(char) # Output: በ
Perl:
my $char = "\x{1260}";
print $char; # Output: በ
PHP:
$char = "\x{1260}";
echo $char; // Output: በ
Ruby:
char = "\u{1260}"
puts char # Output: በ
Rust:
let c = '\u{1260}';
println!("{}", c); // Output: በ
Go:
char := '\u1260'
fmt.Printf("%c\n", char) // Output: በ
CSS:
/* CSS content property */
.element::before {
content: "\001260"; /* 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%A0
MD5:
34e44bd7a11be5a7f446e3a3ffdf0bf4
SHA1:
20fd3cd0b12a10afec036e47ede5faeb26d62470
Base64:
4Ymg