C:
char c = '\u1141';
printf("%c\n", c); // Output: ᅁ
JavaScript:
const char = '\u1141';
console.log(char); // Output: ᅁ
Java:
char c = '\u1141';
System.out.println(c); // Output: ᅁ
JSON:
{"text": "\u1141"} // Value: ᅁ
Python:
char = '\u1141'
print(char) # Output: ᅁ
Perl:
my $char = "\x{1141}";
print $char; # Output: ᅁ
PHP:
$char = "\x{1141}";
echo $char; // Output: ᅁ
Ruby:
char = "\u{1141}"
puts char # Output: ᅁ
Rust:
let c = '\u{1141}';
println!("{}", c); // Output: ᅁ
Go:
char := '\u1141'
fmt.Printf("%c\n", char) // Output: ᅁ
CSS:
/* CSS content property */
.element::before {
content: "\001141"; /* 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%85%81
MD5:
da9396162496cf2867b124e12d3dcf73
SHA1:
6f0901f2e34b14739d3f3262b127b3dcb93ae6df
Base64:
4YWB