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