C:
char c = '\u1948';
printf("%c\n", c); // Output: ᥈
JavaScript:
const char = '\u1948';
console.log(char); // Output: ᥈
Java:
char c = '\u1948';
System.out.println(c); // Output: ᥈
JSON:
{"text": "\u1948"} // Value: ᥈
Python:
char = '\u1948'
print(char) # Output: ᥈
Perl:
my $char = "\x{1948}";
print $char; # Output: ᥈
PHP:
$char = "\x{1948}";
echo $char; // Output: ᥈
Ruby:
char = "\u{1948}"
puts char # Output: ᥈
Rust:
let c = '\u{1948}';
println!("{}", c); // Output: ᥈
Go:
char := '\u1948'
fmt.Printf("%c\n", char) // Output: ᥈
CSS:
/* CSS content property */
.element::before {
content: "\001948"; /* 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%88
MD5:
b98682599c94270b2ad63366cc740683
SHA1:
a5749ca459dff3a3ccf8b60a040dc449582b3321
Base64:
4aWI