C:
char c = '\u145C';
printf("%c\n", c); // Output: ᑜ
JavaScript:
const char = '\u145C';
console.log(char); // Output: ᑜ
Java:
char c = '\u145C';
System.out.println(c); // Output: ᑜ
JSON:
{"text": "\u145C"} // Value: ᑜ
Python:
char = '\u145C'
print(char) # Output: ᑜ
Perl:
my $char = "\x{145C}";
print $char; # Output: ᑜ
PHP:
$char = "\x{145C}";
echo $char; // Output: ᑜ
Ruby:
char = "\u{145C}"
puts char # Output: ᑜ
Rust:
let c = '\u{145C}';
println!("{}", c); // Output: ᑜ
Go:
char := '\u145C'
fmt.Printf("%c\n", char) // Output: ᑜ
CSS:
/* CSS content property */
.element::before {
content: "\00145C"; /* 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%91%9C
MD5:
77c9908370fa80f338d2abb8145a49ac
SHA1:
56c06e29c1af1aebbbf124805cf6cfb90467a43f
Base64:
4ZGc