C:
char c = '\u20AD';
printf("%c\n", c); // Output: ₭
JavaScript:
const char = '\u20AD';
console.log(char); // Output: ₭
Java:
char c = '\u20AD';
System.out.println(c); // Output: ₭
JSON:
{"text": "\u20AD"} // Value: ₭
Python:
char = '\u20AD'
print(char) # Output: ₭
Perl:
my $char = "\x{20AD}";
print $char; # Output: ₭
PHP:
$char = "\x{20AD}";
echo $char; // Output: ₭
Ruby:
char = "\u{20AD}"
puts char # Output: ₭
Rust:
let c = '\u{20AD}';
println!("{}", c); // Output: ₭
Go:
char := '\u20AD'
fmt.Printf("%c\n", char) // Output: ₭
CSS:
/* CSS content property */
.element::before {
content: "\0020AD"; /* 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%82%AD
MD5:
b09a5830aaf7f087c497bca3a51b6e92
SHA1:
ef4075f909060f8efe8f9c76f535e37e7dfb52b6
Base64:
4oKt