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