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