C:
char c = '\u00A6';
printf("%c\n", c); // Output: ¦
JavaScript:
const char = '\u00A6';
console.log(char); // Output: ¦
Java:
char c = '\u00A6';
System.out.println(c); // Output: ¦
JSON:
{"text": "\u00A6"} // Value: ¦
Python:
char = '\u00A6'
print(char) # Output: ¦
Perl:
my $char = "\x{00A6}";
print $char; # Output: ¦
PHP:
$char = "\x{00A6}";
echo $char; // Output: ¦
Ruby:
char = "\u{00A6}"
puts char # Output: ¦
Rust:
let c = '\u{A6}';
println!("{}", c); // Output: ¦
Go:
char := '\u00A6'
fmt.Printf("%c\n", char) // Output: ¦
CSS:
/* CSS content property */
.element::before {
content: "\0000A6"; /* 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=%C2%A6
MD5:
ce821d5f20ed3421c65e523835659505
SHA1:
7666b6d04c1280f6854bcf25a104f3e7ecfdd566
Base64:
wqY=