C:
char c = '\u03F8';
printf("%c\n", c); // Output: ϸ
JavaScript:
const char = '\u03F8';
console.log(char); // Output: ϸ
Java:
char c = '\u03F8';
System.out.println(c); // Output: ϸ
JSON:
{"text": "\u03F8"} // Value: ϸ
Python:
char = '\u03F8'
print(char) # Output: ϸ
Perl:
my $char = "\x{03F8}";
print $char; # Output: ϸ
PHP:
$char = "\x{03F8}";
echo $char; // Output: ϸ
Ruby:
char = "\u{03F8}"
puts char # Output: ϸ
Rust:
let c = '\u{3F8}';
println!("{}", c); // Output: ϸ
Go:
char := '\u03F8'
fmt.Printf("%c\n", char) // Output: ϸ
CSS:
/* CSS content property */
.element::before {
content: "\0003F8"; /* 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=%CF%B8
MD5:
f2b81d71b14a64357455ac2e3e84b73a
SHA1:
43d2f59c3d87db4e351760c53753ebf2925cf8bc
Base64:
z7g=