C:
char c = '\u288A';
printf("%c\n", c); // Output: ⢊
JavaScript:
const char = '\u288A';
console.log(char); // Output: ⢊
Java:
char c = '\u288A';
System.out.println(c); // Output: ⢊
JSON:
{"text": "\u288A"} // Value: ⢊
Python:
char = '\u288A'
print(char) # Output: ⢊
Perl:
my $char = "\x{288A}";
print $char; # Output: ⢊
PHP:
$char = "\x{288A}";
echo $char; // Output: ⢊
Ruby:
char = "\u{288A}"
puts char # Output: ⢊
Rust:
let c = '\u{288A}';
println!("{}", c); // Output: ⢊
Go:
char := '\u288A'
fmt.Printf("%c\n", char) // Output: ⢊
CSS:
/* CSS content property */
.element::before {
content: "\00288A"; /* 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%8A
MD5:
5178bd9c6dba4e17dee29412adfe85ab
SHA1:
5a8ffbcbc533317344a2adb93a2a8ad927357961
Base64:
4qKK