C:
char c = '\u058F';
printf("%c\n", c); // Output: ֏
JavaScript:
const char = '\u058F';
console.log(char); // Output: ֏
Java:
char c = '\u058F';
System.out.println(c); // Output: ֏
JSON:
{"text": "\u058F"} // Value: ֏
Python:
char = '\u058F'
print(char) # Output: ֏
Perl:
my $char = "\x{058F}";
print $char; # Output: ֏
PHP:
$char = "\x{058F}";
echo $char; // Output: ֏
Ruby:
char = "\u{058F}"
puts char # Output: ֏
Rust:
let c = '\u{58F}';
println!("{}", c); // Output: ֏
Go:
char := '\u058F'
fmt.Printf("%c\n", char) // Output: ֏
CSS:
/* CSS content property */
.element::before {
content: "\00058F"; /* 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%8F
MD5:
f0f94226dcf05cf23a70c44615becbdb
SHA1:
e72e29ddaf12d33b4a782131bd88b87ff7c07c39
Base64:
1o8=