C:
char c = '\u1940';
printf("%c\n", c); // Output: ᥀
JavaScript:
const char = '\u1940';
console.log(char); // Output: ᥀
Java:
char c = '\u1940';
System.out.println(c); // Output: ᥀
JSON:
{"text": "\u1940"} // Value: ᥀
Python:
char = '\u1940'
print(char) # Output: ᥀
Perl:
my $char = "\x{1940}";
print $char; # Output: ᥀
PHP:
$char = "\x{1940}";
echo $char; // Output: ᥀
Ruby:
char = "\u{1940}"
puts char # Output: ᥀
Rust:
let c = '\u{1940}';
println!("{}", c); // Output: ᥀
Go:
char := '\u1940'
fmt.Printf("%c\n", char) // Output: ᥀
CSS:
/* CSS content property */
.element::before {
content: "\001940"; /* 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%80
MD5:
d2e8d201cf2e90ec0ea93f2bc425f7c6
SHA1:
256cddbff14600ce1ca10091712c93c3460ab9de
Base64:
4aWA