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