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