C:
char c = '\u0595';
printf("%c\n", c); // Output: ֕
JavaScript:
const char = '\u0595';
console.log(char); // Output: ֕
Java:
char c = '\u0595';
System.out.println(c); // Output: ֕
JSON:
{"text": "\u0595"} // Value: ֕
Python:
char = '\u0595'
print(char) # Output: ֕
Perl:
my $char = "\x{0595}";
print $char; # Output: ֕
PHP:
$char = "\x{0595}";
echo $char; // Output: ֕
Ruby:
char = "\u{0595}"
puts char # Output: ֕
Rust:
let c = '\u{595}';
println!("{}", c); // Output: ֕
Go:
char := '\u0595'
fmt.Printf("%c\n", char) // Output: ֕
CSS:
/* CSS content property */
.element::before {
content: "\000595"; /* 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%95
MD5:
e41fe8913f3efa996024376bb0a43d49
SHA1:
9850c8b010328c2d1999fe96624a77908234bd13
Base64:
1pU=