C:
char c = '\u1191';
printf("%c\n", c); // Output: ᆑ
JavaScript:
const char = '\u1191';
console.log(char); // Output: ᆑ
Java:
char c = '\u1191';
System.out.println(c); // Output: ᆑ
JSON:
{"text": "\u1191"} // Value: ᆑ
Python:
char = '\u1191'
print(char) # Output: ᆑ
Perl:
my $char = "\x{1191}";
print $char; # Output: ᆑ
PHP:
$char = "\x{1191}";
echo $char; // Output: ᆑ
Ruby:
char = "\u{1191}"
puts char # Output: ᆑ
Rust:
let c = '\u{1191}';
println!("{}", c); // Output: ᆑ
Go:
char := '\u1191'
fmt.Printf("%c\n", char) // Output: ᆑ
CSS:
/* CSS content property */
.element::before {
content: "\001191"; /* 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%86%91
MD5:
6c1403851863e0517c963728eea03769
SHA1:
29923776671d53ebc57929c18ceddf2b8ae8670f
Base64:
4YaR