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