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