C:
char c = '\u1947';
printf("%c\n", c); // Output: ᥇
JavaScript:
const char = '\u1947';
console.log(char); // Output: ᥇
Java:
char c = '\u1947';
System.out.println(c); // Output: ᥇
JSON:
{"text": "\u1947"} // Value: ᥇
Python:
char = '\u1947'
print(char) # Output: ᥇
Perl:
my $char = "\x{1947}";
print $char; # Output: ᥇
PHP:
$char = "\x{1947}";
echo $char; // Output: ᥇
Ruby:
char = "\u{1947}"
puts char # Output: ᥇
Rust:
let c = '\u{1947}';
println!("{}", c); // Output: ᥇
Go:
char := '\u1947'
fmt.Printf("%c\n", char) // Output: ᥇
CSS:
/* CSS content property */
.element::before {
content: "\001947"; /* 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%87
MD5:
dfa584b172d2e327ab0cf6efd2b5e29b
SHA1:
522762b873bf38d6481c2c0a7bdad3785acfaeca
Base64:
4aWH