C:
char c = '\u1611';
printf("%c\n", c); // Output: ᘑ
JavaScript:
const char = '\u1611';
console.log(char); // Output: ᘑ
Java:
char c = '\u1611';
System.out.println(c); // Output: ᘑ
JSON:
{"text": "\u1611"} // Value: ᘑ
Python:
char = '\u1611'
print(char) # Output: ᘑ
Perl:
my $char = "\x{1611}";
print $char; # Output: ᘑ
PHP:
$char = "\x{1611}";
echo $char; // Output: ᘑ
Ruby:
char = "\u{1611}"
puts char # Output: ᘑ
Rust:
let c = '\u{1611}';
println!("{}", c); // Output: ᘑ
Go:
char := '\u1611'
fmt.Printf("%c\n", char) // Output: ᘑ
CSS:
/* CSS content property */
.element::before {
content: "\001611"; /* 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%98%91
MD5:
9a1a75a18426ac28bb2425f677f13541
SHA1:
2fe546f8d10fdfc1e7440b32587df2ac4a0101fe
Base64:
4ZiR