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