Unicode Finder

"»" U+00BB(RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK)

»
U+00BB
Block Name
Latin-1 Supplement
Name
RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK

Programming

C
\u00BB
JavaScript
\u00BB
Java
\u00BB
Json
\u00BB
Python
\u00BB
Perl
\x{00BB}
PHP
\x{00BB}
Ruby
\u{00BB}
Rust
\u{BB}
Go
\u00BB

Web

CSS
\0000BB
HtmlDecimal
»
HtmlHexadecimal
»
Url
%C2%BB

Code

MD5
04bcb216c41a3234e3343c54fc9eb89c
Sha1
f21045a64064cd79e9d1a0d09a725e0bdaf16965
Base64
wrs=

Usage Examples

Programming Languages

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: »

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0000BB";  /* Display: » */
}

HTML Decimal:

<p>HTML decimal: &#187;</p>  <!-- Display: » -->

HTML Hexadecimal:

<p>HTML hex: &#x00BB;</p>  <!-- Display: » -->

URL Encoding:

// » URL encoding
https://unicodefinder.com/search.php?query=%C2%BB

Encodings

MD5:

04bcb216c41a3234e3343c54fc9eb89c

SHA1:

f21045a64064cd79e9d1a0d09a725e0bdaf16965

Base64:

wrs=