C:
char c = '\u1406';
printf("%c\n", c); // Output: ᐆ
JavaScript:
const char = '\u1406';
console.log(char); // Output: ᐆ
Java:
char c = '\u1406';
System.out.println(c); // Output: ᐆ
JSON:
{"text": "\u1406"} // Value: ᐆ
Python:
char = '\u1406'
print(char) # Output: ᐆ
Perl:
my $char = "\x{1406}";
print $char; # Output: ᐆ
PHP:
$char = "\x{1406}";
echo $char; // Output: ᐆ
Ruby:
char = "\u{1406}"
puts char # Output: ᐆ
Rust:
let c = '\u{1406}';
println!("{}", c); // Output: ᐆ
Go:
char := '\u1406'
fmt.Printf("%c\n", char) // Output: ᐆ
CSS:
/* CSS content property */
.element::before {
content: "\001406"; /* 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%90%86
MD5:
6f4a39babcfdfa0e5feadf730080d3f2
SHA1:
885797d555c3fc99736b3949aced0f194fca7d40
Base64:
4ZCG