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