C:
char c = '\u1261';
printf("%c\n", c); // Output: ቡ
JavaScript:
const char = '\u1261';
console.log(char); // Output: ቡ
Java:
char c = '\u1261';
System.out.println(c); // Output: ቡ
JSON:
{"text": "\u1261"} // Value: ቡ
Python:
char = '\u1261'
print(char) # Output: ቡ
Perl:
my $char = "\x{1261}";
print $char; # Output: ቡ
PHP:
$char = "\x{1261}";
echo $char; // Output: ቡ
Ruby:
char = "\u{1261}"
puts char # Output: ቡ
Rust:
let c = '\u{1261}';
println!("{}", c); // Output: ቡ
Go:
char := '\u1261'
fmt.Printf("%c\n", char) // Output: ቡ
CSS:
/* CSS content property */
.element::before {
content: "\001261"; /* 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%A1
MD5:
0fd40821222d79c3da6e0ade28ed7eef
SHA1:
1bb495865bbabb5b2d08f301a8307f6ddfb7de67
Base64:
4Ymh