C:
char c = '\u1386';
printf("%c\n", c); // Output: ᎆ
JavaScript:
const char = '\u1386';
console.log(char); // Output: ᎆ
Java:
char c = '\u1386';
System.out.println(c); // Output: ᎆ
JSON:
{"text": "\u1386"} // Value: ᎆ
Python:
char = '\u1386'
print(char) # Output: ᎆ
Perl:
my $char = "\x{1386}";
print $char; # Output: ᎆ
PHP:
$char = "\x{1386}";
echo $char; // Output: ᎆ
Ruby:
char = "\u{1386}"
puts char # Output: ᎆ
Rust:
let c = '\u{1386}';
println!("{}", c); // Output: ᎆ
Go:
char := '\u1386'
fmt.Printf("%c\n", char) // Output: ᎆ
CSS:
/* CSS content property */
.element::before {
content: "\001386"; /* 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%86
MD5:
bd68ebfae08e1f985f144dadb9882f35
SHA1:
208257474e6d9da75eea8dfb7c953cbd0fac2caf
Base64:
4Y6G