C:
char c = '\u1493';
printf("%c\n", c); // Output: ᒓ
JavaScript:
const char = '\u1493';
console.log(char); // Output: ᒓ
Java:
char c = '\u1493';
System.out.println(c); // Output: ᒓ
JSON:
{"text": "\u1493"} // Value: ᒓ
Python:
char = '\u1493'
print(char) # Output: ᒓ
Perl:
my $char = "\x{1493}";
print $char; # Output: ᒓ
PHP:
$char = "\x{1493}";
echo $char; // Output: ᒓ
Ruby:
char = "\u{1493}"
puts char # Output: ᒓ
Rust:
let c = '\u{1493}';
println!("{}", c); // Output: ᒓ
Go:
char := '\u1493'
fmt.Printf("%c\n", char) // Output: ᒓ
CSS:
/* CSS content property */
.element::before {
content: "\001493"; /* 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%93
MD5:
6cf53b8c5c981d9b8abdd7b99a164ef7
SHA1:
238ccf03784c21e868ac5d9ca5097fd2bc7aee0b
Base64:
4ZKT