C:
char c = '\u28A2';
printf("%c\n", c); // Output: ⢢
JavaScript:
const char = '\u28A2';
console.log(char); // Output: ⢢
Java:
char c = '\u28A2';
System.out.println(c); // Output: ⢢
JSON:
{"text": "\u28A2"} // Value: ⢢
Python:
char = '\u28A2'
print(char) # Output: ⢢
Perl:
my $char = "\x{28A2}";
print $char; # Output: ⢢
PHP:
$char = "\x{28A2}";
echo $char; // Output: ⢢
Ruby:
char = "\u{28A2}"
puts char # Output: ⢢
Rust:
let c = '\u{28A2}';
println!("{}", c); // Output: ⢢
Go:
char := '\u28A2'
fmt.Printf("%c\n", char) // Output: ⢢
CSS:
/* CSS content property */
.element::before {
content: "\0028A2"; /* 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%A2%A2
MD5:
98fa8ebd3dca1d1bb6373b01d24c574f
SHA1:
1f8dfcfe9223e187258ce8cd2be0a872fe64d72b
Base64:
4qKi