C:
char c = '\u1393';
printf("%c\n", c); // Output: ᎓
JavaScript:
const char = '\u1393';
console.log(char); // Output: ᎓
Java:
char c = '\u1393';
System.out.println(c); // Output: ᎓
JSON:
{"text": "\u1393"} // Value: ᎓
Python:
char = '\u1393'
print(char) # Output: ᎓
Perl:
my $char = "\x{1393}";
print $char; # Output: ᎓
PHP:
$char = "\x{1393}";
echo $char; // Output: ᎓
Ruby:
char = "\u{1393}"
puts char # Output: ᎓
Rust:
let c = '\u{1393}';
println!("{}", c); // Output: ᎓
Go:
char := '\u1393'
fmt.Printf("%c\n", char) // Output: ᎓
CSS:
/* CSS content property */
.element::before {
content: "\001393"; /* 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%8E%93
MD5:
0bc0adf2363d8c40d90e2f245e3a2c80
SHA1:
8a1214431af1112f7652bfaeb22a84be7b32981e
Base64:
4Y6T