Unicode Finder

"ˆ" U+02C6(MODIFIER LETTER CIRCUMFLEX ACCENT)

ˆ
U+02C6
Block Name
Spacing Modifier Letters
Name
MODIFIER LETTER CIRCUMFLEX ACCENT

Programming

C
\u02C6
JavaScript
\u02C6
Java
\u02C6
Json
\u02C6
Python
\u02C6
Perl
\x{02C6}
PHP
\x{02C6}
Ruby
\u{02C6}
Rust
\u{2C6}
Go
\u02C6

Web

CSS
\0002C6
HtmlDecimal
ˆ
HtmlHexadecimal
ˆ
Url
%CB%86

Code

MD5
ec46bde636e5485992c7c6fe41e71b9a
Sha1
867f1703456c3aac327a5a03107188dcf0cc38c3
Base64
y4Y=

Usage Examples

Programming Languages

C:

char c = '\u02C6';
printf("%c\n", c);  // Output: ˆ

JavaScript:

const char = '\u02C6';
console.log(char);  // Output: ˆ

Java:

char c = '\u02C6';
System.out.println(c);  // Output: ˆ

JSON:

{"text": "\u02C6"}  // Value: ˆ

Python:

char = '\u02C6'
print(char)  # Output: ˆ

Perl:

my $char = "\x{02C6}";
print $char;  # Output: ˆ

PHP:

$char = "\x{02C6}";
echo $char;  // Output: ˆ

Ruby:

char = "\u{02C6}"
puts char  # Output: ˆ

Rust:

let c = '\u{2C6}';
println!("{}", c);  // Output: ˆ

Go:

char := '\u02C6'
fmt.Printf("%c\n", char)  // Output: ˆ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0002C6";  /* Display: ˆ */
}

HTML Decimal:

<p>HTML decimal: &#710;</p>  <!-- Display: ˆ -->

HTML Hexadecimal:

<p>HTML hex: &#x02C6;</p>  <!-- Display: ˆ -->

URL Encoding:

// ˆ URL encoding
https://unicodefinder.com/search.php?query=%CB%86

Encodings

MD5:

ec46bde636e5485992c7c6fe41e71b9a

SHA1:

867f1703456c3aac327a5a03107188dcf0cc38c3

Base64:

y4Y=