C:
char c = '\u1955';
printf("%c\n", c); // Output: ᥕ
JavaScript:
const char = '\u1955';
console.log(char); // Output: ᥕ
Java:
char c = '\u1955';
System.out.println(c); // Output: ᥕ
JSON:
{"text": "\u1955"} // Value: ᥕ
Python:
char = '\u1955'
print(char) # Output: ᥕ
Perl:
my $char = "\x{1955}";
print $char; # Output: ᥕ
PHP:
$char = "\x{1955}";
echo $char; // Output: ᥕ
Ruby:
char = "\u{1955}"
puts char # Output: ᥕ
Rust:
let c = '\u{1955}';
println!("{}", c); // Output: ᥕ
Go:
char := '\u1955'
fmt.Printf("%c\n", char) // Output: ᥕ
CSS:
/* CSS content property */
.element::before {
content: "\001955"; /* 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%95
MD5:
ac1fc233512c4374985c5c9a8c02e6db
SHA1:
f14c6318f8f710fbd5746b8292adcba46f035d0a
Base64:
4aWV