C:
char c = '\u14DF';
printf("%c\n", c); // Output: ᓟ
JavaScript:
const char = '\u14DF';
console.log(char); // Output: ᓟ
Java:
char c = '\u14DF';
System.out.println(c); // Output: ᓟ
JSON:
{"text": "\u14DF"} // Value: ᓟ
Python:
char = '\u14DF'
print(char) # Output: ᓟ
Perl:
my $char = "\x{14DF}";
print $char; # Output: ᓟ
PHP:
$char = "\x{14DF}";
echo $char; // Output: ᓟ
Ruby:
char = "\u{14DF}"
puts char # Output: ᓟ
Rust:
let c = '\u{14DF}';
println!("{}", c); // Output: ᓟ
Go:
char := '\u14DF'
fmt.Printf("%c\n", char) // Output: ᓟ
CSS:
/* CSS content property */
.element::before {
content: "\0014DF"; /* 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%9F
MD5:
99e16da224c8866d8a31764f53ca3b36
SHA1:
58e7daf7431e41b524582c3c235cfbaf1648d16d
Base64:
4ZOf