C:
char c = '\u1391';
printf("%c\n", c); // Output: ᎑
JavaScript:
const char = '\u1391';
console.log(char); // Output: ᎑
Java:
char c = '\u1391';
System.out.println(c); // Output: ᎑
JSON:
{"text": "\u1391"} // Value: ᎑
Python:
char = '\u1391'
print(char) # Output: ᎑
Perl:
my $char = "\x{1391}";
print $char; # Output: ᎑
PHP:
$char = "\x{1391}";
echo $char; // Output: ᎑
Ruby:
char = "\u{1391}"
puts char # Output: ᎑
Rust:
let c = '\u{1391}';
println!("{}", c); // Output: ᎑
Go:
char := '\u1391'
fmt.Printf("%c\n", char) // Output: ᎑
CSS:
/* CSS content property */
.element::before {
content: "\001391"; /* 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%8E%91
MD5:
ddffa8749719ac7040d1dc93c7c92f46
SHA1:
44a58096ed30a555aee443138779918189b8f5e4
Base64:
4Y6R