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