C:
char c = '\u002A';
printf("%c\n", c); // Output: *
JavaScript:
const char = '\u002A';
console.log(char); // Output: *
Java:
char c = '\u002A';
System.out.println(c); // Output: *
JSON:
{"text": "\u002A"} // Value: *
Python:
char = '\u002A'
print(char) # Output: *
Perl:
my $char = "\x{002A}";
print $char; # Output: *
PHP:
$char = "\x{002A}";
echo $char; // Output: *
Ruby:
char = "\u{002A}"
puts char # Output: *
Rust:
let c = '\u{2A}';
println!("{}", c); // Output: *
Go:
char := '\u002A'
fmt.Printf("%c\n", char) // Output: *
CSS:
/* CSS content property */
.element::before {
content: "\00002A"; /* 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=%2A
MD5:
3389dae361af79b04c9c8e7057f60cc6
SHA1:
df58248c414f342c81e056b40bee12d17a08bf61
Base64:
Kg==