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