C:
char c = '\u2CEC';
printf("%c\n", c); // Output: ⳬ
JavaScript:
const char = '\u2CEC';
console.log(char); // Output: ⳬ
Java:
char c = '\u2CEC';
System.out.println(c); // Output: ⳬ
JSON:
{"text": "\u2CEC"} // Value: ⳬ
Python:
char = '\u2CEC'
print(char) # Output: ⳬ
Perl:
my $char = "\x{2CEC}";
print $char; # Output: ⳬ
PHP:
$char = "\x{2CEC}";
echo $char; // Output: ⳬ
Ruby:
char = "\u{2CEC}"
puts char # Output: ⳬ
Rust:
let c = '\u{2CEC}';
println!("{}", c); // Output: ⳬ
Go:
char := '\u2CEC'
fmt.Printf("%c\n", char) // Output: ⳬ
CSS:
/* CSS content property */
.element::before {
content: "\002CEC"; /* 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%AC
MD5:
c32ab1ad0ffe1ba631e193c3a3334208
SHA1:
8b7e6f1c3b120d838e39c1027575ff070c1715bf
Base64:
4rOs