C:
char c = '\u142C';
printf("%c\n", c); // Output: ᐬ
JavaScript:
const char = '\u142C';
console.log(char); // Output: ᐬ
Java:
char c = '\u142C';
System.out.println(c); // Output: ᐬ
JSON:
{"text": "\u142C"} // Value: ᐬ
Python:
char = '\u142C'
print(char) # Output: ᐬ
Perl:
my $char = "\x{142C}";
print $char; # Output: ᐬ
PHP:
$char = "\x{142C}";
echo $char; // Output: ᐬ
Ruby:
char = "\u{142C}"
puts char # Output: ᐬ
Rust:
let c = '\u{142C}';
println!("{}", c); // Output: ᐬ
Go:
char := '\u142C'
fmt.Printf("%c\n", char) // Output: ᐬ
CSS:
/* CSS content property */
.element::before {
content: "\00142C"; /* 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%90%AC
MD5:
ed53e6722d52fbe0f09b1de2deeac65e
SHA1:
0c206dabcf2cd8fcff53dd8cc56aa95d365a7554
Base64:
4ZCs