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