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