C:
char c = '\u0206';
printf("%c\n", c); // Output: Ȇ
JavaScript:
const char = '\u0206';
console.log(char); // Output: Ȇ
Java:
char c = '\u0206';
System.out.println(c); // Output: Ȇ
JSON:
{"text": "\u0206"} // Value: Ȇ
Python:
char = '\u0206'
print(char) # Output: Ȇ
Perl:
my $char = "\x{0206}";
print $char; # Output: Ȇ
PHP:
$char = "\x{0206}";
echo $char; // Output: Ȇ
Ruby:
char = "\u{0206}"
puts char # Output: Ȇ
Rust:
let c = '\u{206}';
println!("{}", c); // Output: Ȇ
Go:
char := '\u0206'
fmt.Printf("%c\n", char) // Output: Ȇ
CSS:
/* CSS content property */
.element::before {
content: "\000206"; /* 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=%C8%86
MD5:
1f2e6dd9f72a90e691939af5a18ca6ac
SHA1:
48d4e2495c2e5ae3a44f941c098d07c9383439f4
Base64:
yIY=