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