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