C:
char c = '\u1680';
printf("%c\n", c); // Output:
JavaScript:
const char = '\u1680';
console.log(char); // Output:
Java:
char c = '\u1680';
System.out.println(c); // Output:
JSON:
{"text": "\u1680"} // Value:
Python:
char = '\u1680'
print(char) # Output:
Perl:
my $char = "\x{1680}";
print $char; # Output:
PHP:
$char = "\x{1680}";
echo $char; // Output:
Ruby:
char = "\u{1680}"
puts char # Output:
Rust:
let c = '\u{1680}';
println!("{}", c); // Output:
Go:
char := '\u1680'
fmt.Printf("%c\n", char) // Output:
CSS:
/* CSS content property */
.element::before {
content: "\001680"; /* 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%9A%80
MD5:
01e543a2fd71e16a0f590878ba040f8b
SHA1:
7e9e68c4d925db85f9314e91c29f00cd3b40eed1
Base64:
4ZqA