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