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