C:
char c = '\u1200';
printf("%c\n", c); // Output: ሀ
JavaScript:
const char = '\u1200';
console.log(char); // Output: ሀ
Java:
char c = '\u1200';
System.out.println(c); // Output: ሀ
JSON:
{"text": "\u1200"} // Value: ሀ
Python:
char = '\u1200'
print(char) # Output: ሀ
Perl:
my $char = "\x{1200}";
print $char; # Output: ሀ
PHP:
$char = "\x{1200}";
echo $char; // Output: ሀ
Ruby:
char = "\u{1200}"
puts char # Output: ሀ
Rust:
let c = '\u{1200}';
println!("{}", c); // Output: ሀ
Go:
char := '\u1200'
fmt.Printf("%c\n", char) // Output: ሀ
CSS:
/* CSS content property */
.element::before {
content: "\001200"; /* 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%80
MD5:
e99408c3110b2b5f644474d3bfed37db
SHA1:
3470f5f136b9a012e8e84ed55f87921537d3d2b0
Base64:
4YiA