C:
char c = '\u01B6';
printf("%c\n", c); // Output: ƶ
JavaScript:
const char = '\u01B6';
console.log(char); // Output: ƶ
Java:
char c = '\u01B6';
System.out.println(c); // Output: ƶ
JSON:
{"text": "\u01B6"} // Value: ƶ
Python:
char = '\u01B6'
print(char) # Output: ƶ
Perl:
my $char = "\x{01B6}";
print $char; # Output: ƶ
PHP:
$char = "\x{01B6}";
echo $char; // Output: ƶ
Ruby:
char = "\u{01B6}"
puts char # Output: ƶ
Rust:
let c = '\u{1B6}';
println!("{}", c); // Output: ƶ
Go:
char := '\u01B6'
fmt.Printf("%c\n", char) // Output: ƶ
CSS:
/* CSS content property */
.element::before {
content: "\0001B6"; /* 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=%C6%B6
MD5:
034c2755ddfb77558c03918e5cae53d1
SHA1:
8f1b831ce1a0f83079b2ab947e0392dc90f48d13
Base64:
xrY=