C:
char c = '\u1969';
printf("%c\n", c); // Output: ᥩ
JavaScript:
const char = '\u1969';
console.log(char); // Output: ᥩ
Java:
char c = '\u1969';
System.out.println(c); // Output: ᥩ
JSON:
{"text": "\u1969"} // Value: ᥩ
Python:
char = '\u1969'
print(char) # Output: ᥩ
Perl:
my $char = "\x{1969}";
print $char; # Output: ᥩ
PHP:
$char = "\x{1969}";
echo $char; // Output: ᥩ
Ruby:
char = "\u{1969}"
puts char # Output: ᥩ
Rust:
let c = '\u{1969}';
println!("{}", c); // Output: ᥩ
Go:
char := '\u1969'
fmt.Printf("%c\n", char) // Output: ᥩ
CSS:
/* CSS content property */
.element::before {
content: "\001969"; /* 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%A9
MD5:
f8767f63270d1acdee82c0c714a6aa11
SHA1:
8030ae0fcc9b3ac5b3a8fbb906c4c799733a0269
Base64:
4aWp