C:
char c = '\u0586';
printf("%c\n", c); // Output: ֆ
JavaScript:
const char = '\u0586';
console.log(char); // Output: ֆ
Java:
char c = '\u0586';
System.out.println(c); // Output: ֆ
JSON:
{"text": "\u0586"} // Value: ֆ
Python:
char = '\u0586'
print(char) # Output: ֆ
Perl:
my $char = "\x{0586}";
print $char; # Output: ֆ
PHP:
$char = "\x{0586}";
echo $char; // Output: ֆ
Ruby:
char = "\u{0586}"
puts char # Output: ֆ
Rust:
let c = '\u{586}';
println!("{}", c); // Output: ֆ
Go:
char := '\u0586'
fmt.Printf("%c\n", char) // Output: ֆ
CSS:
/* CSS content property */
.element::before {
content: "\000586"; /* 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=%D6%86
MD5:
9af3d99f3f57b39b552b99e80fb3c2b9
SHA1:
bc1fde2da3087d2dbbb76795558b9f92be6fe8a7
Base64:
1oY=