C:
char c = '\u204E';
printf("%c\n", c); // Output: ⁎
JavaScript:
const char = '\u204E';
console.log(char); // Output: ⁎
Java:
char c = '\u204E';
System.out.println(c); // Output: ⁎
JSON:
{"text": "\u204E"} // Value: ⁎
Python:
char = '\u204E'
print(char) # Output: ⁎
Perl:
my $char = "\x{204E}";
print $char; # Output: ⁎
PHP:
$char = "\x{204E}";
echo $char; // Output: ⁎
Ruby:
char = "\u{204E}"
puts char # Output: ⁎
Rust:
let c = '\u{204E}';
println!("{}", c); // Output: ⁎
Go:
char := '\u204E'
fmt.Printf("%c\n", char) // Output: ⁎
CSS:
/* CSS content property */
.element::before {
content: "\00204E"; /* 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%81%8E
MD5:
57b7840fa5a3e2a6ee72c3e8f9479e71
SHA1:
eef7f7435ed3089f2b79eea435f987e3cb45c4bc
Base64:
4oGO