C:
char c = '\u1966';
printf("%c\n", c); // Output: ᥦ
JavaScript:
const char = '\u1966';
console.log(char); // Output: ᥦ
Java:
char c = '\u1966';
System.out.println(c); // Output: ᥦ
JSON:
{"text": "\u1966"} // Value: ᥦ
Python:
char = '\u1966'
print(char) # Output: ᥦ
Perl:
my $char = "\x{1966}";
print $char; # Output: ᥦ
PHP:
$char = "\x{1966}";
echo $char; // Output: ᥦ
Ruby:
char = "\u{1966}"
puts char # Output: ᥦ
Rust:
let c = '\u{1966}';
println!("{}", c); // Output: ᥦ
Go:
char := '\u1966'
fmt.Printf("%c\n", char) // Output: ᥦ
CSS:
/* CSS content property */
.element::before {
content: "\001966"; /* 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%A6
MD5:
01e0980051dfc48ff6162223d1f8fb24
SHA1:
7a3941d40bc4a165603fde08c5b55baf2b0653c3
Base64:
4aWm