C:
char c = '\u14D8';
printf("%c\n", c); // Output: ᓘ
JavaScript:
const char = '\u14D8';
console.log(char); // Output: ᓘ
Java:
char c = '\u14D8';
System.out.println(c); // Output: ᓘ
JSON:
{"text": "\u14D8"} // Value: ᓘ
Python:
char = '\u14D8'
print(char) # Output: ᓘ
Perl:
my $char = "\x{14D8}";
print $char; # Output: ᓘ
PHP:
$char = "\x{14D8}";
echo $char; // Output: ᓘ
Ruby:
char = "\u{14D8}"
puts char # Output: ᓘ
Rust:
let c = '\u{14D8}';
println!("{}", c); // Output: ᓘ
Go:
char := '\u14D8'
fmt.Printf("%c\n", char) // Output: ᓘ
CSS:
/* CSS content property */
.element::before {
content: "\0014D8"; /* 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%93%98
MD5:
c1442745b859349defd760bf8d4641b8
SHA1:
57d85fa5bd27d8f12dbef739a6c5febd8515d3ed
Base64:
4ZOY