C:
char c = '\u1946';
printf("%c\n", c); // Output: ᥆
JavaScript:
const char = '\u1946';
console.log(char); // Output: ᥆
Java:
char c = '\u1946';
System.out.println(c); // Output: ᥆
JSON:
{"text": "\u1946"} // Value: ᥆
Python:
char = '\u1946'
print(char) # Output: ᥆
Perl:
my $char = "\x{1946}";
print $char; # Output: ᥆
PHP:
$char = "\x{1946}";
echo $char; // Output: ᥆
Ruby:
char = "\u{1946}"
puts char # Output: ᥆
Rust:
let c = '\u{1946}';
println!("{}", c); // Output: ᥆
Go:
char := '\u1946'
fmt.Printf("%c\n", char) // Output: ᥆
CSS:
/* CSS content property */
.element::before {
content: "\001946"; /* 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%86
MD5:
dbc3b155948ec4f42fa4e4e9348568e8
SHA1:
635c58ed6e0ca43457d36f1ee43db7b02beb82c3
Base64:
4aWG