C:
char c = '\u0392';
printf("%c\n", c); // Output: Β
JavaScript:
const char = '\u0392';
console.log(char); // Output: Β
Java:
char c = '\u0392';
System.out.println(c); // Output: Β
JSON:
{"text": "\u0392"} // Value: Β
Python:
char = '\u0392'
print(char) # Output: Β
Perl:
my $char = "\x{0392}";
print $char; # Output: Β
PHP:
$char = "\x{0392}";
echo $char; // Output: Β
Ruby:
char = "\u{0392}"
puts char # Output: Β
Rust:
let c = '\u{392}';
println!("{}", c); // Output: Β
Go:
char := '\u0392'
fmt.Printf("%c\n", char) // Output: Β
CSS:
/* CSS content property */
.element::before {
content: "\000392"; /* 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%92
MD5:
3aaa277e8dbff354536c8feb491e3785
SHA1:
d0b1a8037ee6b5017302444ea8abd3f6d0664f2a
Base64:
zpI=