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