C:
char c = '\u2016';
printf("%c\n", c); // Output: ‖
JavaScript:
const char = '\u2016';
console.log(char); // Output: ‖
Java:
char c = '\u2016';
System.out.println(c); // Output: ‖
JSON:
{"text": "\u2016"} // Value: ‖
Python:
char = '\u2016'
print(char) # Output: ‖
Perl:
my $char = "\x{2016}";
print $char; # Output: ‖
PHP:
$char = "\x{2016}";
echo $char; // Output: ‖
Ruby:
char = "\u{2016}"
puts char # Output: ‖
Rust:
let c = '\u{2016}';
println!("{}", c); // Output: ‖
Go:
char := '\u2016'
fmt.Printf("%c\n", char) // Output: ‖
CSS:
/* CSS content property */
.element::before {
content: "\002016"; /* 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=%E2%80%96
MD5:
dea41f85fd3e0d92a4abd5021ca5aec6
SHA1:
2cbdb0454887ee13511ae59abdcfd0b61d9b692f
Base64:
4oCW