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