C:
char c = '\u1965';
printf("%c\n", c); // Output: ᥥ
JavaScript:
const char = '\u1965';
console.log(char); // Output: ᥥ
Java:
char c = '\u1965';
System.out.println(c); // Output: ᥥ
JSON:
{"text": "\u1965"} // Value: ᥥ
Python:
char = '\u1965'
print(char) # Output: ᥥ
Perl:
my $char = "\x{1965}";
print $char; # Output: ᥥ
PHP:
$char = "\x{1965}";
echo $char; // Output: ᥥ
Ruby:
char = "\u{1965}"
puts char # Output: ᥥ
Rust:
let c = '\u{1965}';
println!("{}", c); // Output: ᥥ
Go:
char := '\u1965'
fmt.Printf("%c\n", char) // Output: ᥥ
CSS:
/* CSS content property */
.element::before {
content: "\001965"; /* 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%A5
MD5:
757f3a861821616634ed1a4df53865c5
SHA1:
cfb76c149b0200b42c99c82afb141c197421e6f3
Base64:
4aWl