C:
char c = '\u2CC6';
printf("%c\n", c); // Output: Ⳇ
JavaScript:
const char = '\u2CC6';
console.log(char); // Output: Ⳇ
Java:
char c = '\u2CC6';
System.out.println(c); // Output: Ⳇ
JSON:
{"text": "\u2CC6"} // Value: Ⳇ
Python:
char = '\u2CC6'
print(char) # Output: Ⳇ
Perl:
my $char = "\x{2CC6}";
print $char; # Output: Ⳇ
PHP:
$char = "\x{2CC6}";
echo $char; // Output: Ⳇ
Ruby:
char = "\u{2CC6}"
puts char # Output: Ⳇ
Rust:
let c = '\u{2CC6}';
println!("{}", c); // Output: Ⳇ
Go:
char := '\u2CC6'
fmt.Printf("%c\n", char) // Output: Ⳇ
CSS:
/* CSS content property */
.element::before {
content: "\002CC6"; /* 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=%E2%B3%86
MD5:
3da84d624b0296cbe8db7264d30911b6
SHA1:
7e6fc8a73cd881c7974443cda12fd45d56adff30
Base64:
4rOG