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