C:
char c = '\u1971';
printf("%c\n", c); // Output: ᥱ
JavaScript:
const char = '\u1971';
console.log(char); // Output: ᥱ
Java:
char c = '\u1971';
System.out.println(c); // Output: ᥱ
JSON:
{"text": "\u1971"} // Value: ᥱ
Python:
char = '\u1971'
print(char) # Output: ᥱ
Perl:
my $char = "\x{1971}";
print $char; # Output: ᥱ
PHP:
$char = "\x{1971}";
echo $char; // Output: ᥱ
Ruby:
char = "\u{1971}"
puts char # Output: ᥱ
Rust:
let c = '\u{1971}';
println!("{}", c); // Output: ᥱ
Go:
char := '\u1971'
fmt.Printf("%c\n", char) // Output: ᥱ
CSS:
/* CSS content property */
.element::before {
content: "\001971"; /* 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%B1
MD5:
6fa4aa77b07937214cb3cd61dd4776c4
SHA1:
5e952c98132a1dd1fd46dde0a213814486fe7323
Base64:
4aWx