C:
char c = '\u1497';
printf("%c\n", c); // Output: ᒗ
JavaScript:
const char = '\u1497';
console.log(char); // Output: ᒗ
Java:
char c = '\u1497';
System.out.println(c); // Output: ᒗ
JSON:
{"text": "\u1497"} // Value: ᒗ
Python:
char = '\u1497'
print(char) # Output: ᒗ
Perl:
my $char = "\x{1497}";
print $char; # Output: ᒗ
PHP:
$char = "\x{1497}";
echo $char; // Output: ᒗ
Ruby:
char = "\u{1497}"
puts char # Output: ᒗ
Rust:
let c = '\u{1497}';
println!("{}", c); // Output: ᒗ
Go:
char := '\u1497'
fmt.Printf("%c\n", char) // Output: ᒗ
CSS:
/* CSS content property */
.element::before {
content: "\001497"; /* 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%97
MD5:
1cb8c320dd4b741180f0230bd2c46e0f
SHA1:
ab5d3b785c51ae5066a3ce7ee757feb79133033a
Base64:
4ZKX