C:
char c = '\u1202';
printf("%c\n", c); // Output: ሂ
JavaScript:
const char = '\u1202';
console.log(char); // Output: ሂ
Java:
char c = '\u1202';
System.out.println(c); // Output: ሂ
JSON:
{"text": "\u1202"} // Value: ሂ
Python:
char = '\u1202'
print(char) # Output: ሂ
Perl:
my $char = "\x{1202}";
print $char; # Output: ሂ
PHP:
$char = "\x{1202}";
echo $char; // Output: ሂ
Ruby:
char = "\u{1202}"
puts char # Output: ሂ
Rust:
let c = '\u{1202}';
println!("{}", c); // Output: ሂ
Go:
char := '\u1202'
fmt.Printf("%c\n", char) // Output: ሂ
CSS:
/* CSS content property */
.element::before {
content: "\001202"; /* 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%88%82
MD5:
789aa1e5ef7f9829a72328c54919c34a
SHA1:
13d21a767f4fb8808a65996c375331b6e3b8a64e
Base64:
4YiC