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