C:
char c = '\u1967';
printf("%c\n", c); // Output: ᥧ
JavaScript:
const char = '\u1967';
console.log(char); // Output: ᥧ
Java:
char c = '\u1967';
System.out.println(c); // Output: ᥧ
JSON:
{"text": "\u1967"} // Value: ᥧ
Python:
char = '\u1967'
print(char) # Output: ᥧ
Perl:
my $char = "\x{1967}";
print $char; # Output: ᥧ
PHP:
$char = "\x{1967}";
echo $char; // Output: ᥧ
Ruby:
char = "\u{1967}"
puts char # Output: ᥧ
Rust:
let c = '\u{1967}';
println!("{}", c); // Output: ᥧ
Go:
char := '\u1967'
fmt.Printf("%c\n", char) // Output: ᥧ
CSS:
/* CSS content property */
.element::before {
content: "\001967"; /* 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%A7
MD5:
b1759c11af5a543bda775a6d8b658369
SHA1:
3b68cc34e40a438caaa094b25b929e25ac7bdd60
Base64:
4aWn