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