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