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