C:
char c = '\u00A2';
printf("%c\n", c); // Output: ¢
JavaScript:
const char = '\u00A2';
console.log(char); // Output: ¢
Java:
char c = '\u00A2';
System.out.println(c); // Output: ¢
JSON:
{"text": "\u00A2"} // Value: ¢
Python:
char = '\u00A2'
print(char) # Output: ¢
Perl:
my $char = "\x{00A2}";
print $char; # Output: ¢
PHP:
$char = "\x{00A2}";
echo $char; // Output: ¢
Ruby:
char = "\u{00A2}"
puts char # Output: ¢
Rust:
let c = '\u{A2}';
println!("{}", c); // Output: ¢
Go:
char := '\u00A2'
fmt.Printf("%c\n", char) // Output: ¢
CSS:
/* CSS content property */
.element::before {
content: "\0000A2"; /* 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=%C2%A2
MD5:
039ebd84d4cf1cc759546317e6520c0d
SHA1:
3a1a05a5f803af2ead5b06c666e0ed09fd68b7a2
Base64:
wqI=