C:
char c = '\u00F8';
printf("%c\n", c); // Output: ø
JavaScript:
const char = '\u00F8';
console.log(char); // Output: ø
Java:
char c = '\u00F8';
System.out.println(c); // Output: ø
JSON:
{"text": "\u00F8"} // Value: ø
Python:
char = '\u00F8'
print(char) # Output: ø
Perl:
my $char = "\x{00F8}";
print $char; # Output: ø
PHP:
$char = "\x{00F8}";
echo $char; // Output: ø
Ruby:
char = "\u{00F8}"
puts char # Output: ø
Rust:
let c = '\u{F8}';
println!("{}", c); // Output: ø
Go:
char := '\u00F8'
fmt.Printf("%c\n", char) // Output: ø
CSS:
/* CSS content property */
.element::before {
content: "\0000F8"; /* 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=%C3%B8
MD5:
837d4938ec1d5836484d61218c11c6fe
SHA1:
9011d589f29c8e154cec361bc150bba52a7a041c
Base64:
w7g=