C:
char c = '\u0465';
printf("%c\n", c); // Output: ѥ
JavaScript:
const char = '\u0465';
console.log(char); // Output: ѥ
Java:
char c = '\u0465';
System.out.println(c); // Output: ѥ
JSON:
{"text": "\u0465"} // Value: ѥ
Python:
char = '\u0465'
print(char) # Output: ѥ
Perl:
my $char = "\x{0465}";
print $char; # Output: ѥ
PHP:
$char = "\x{0465}";
echo $char; // Output: ѥ
Ruby:
char = "\u{0465}"
puts char # Output: ѥ
Rust:
let c = '\u{465}';
println!("{}", c); // Output: ѥ
Go:
char := '\u0465'
fmt.Printf("%c\n", char) // Output: ѥ
CSS:
/* CSS content property */
.element::before {
content: "\000465"; /* 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=%D1%A5
MD5:
d2ebfb02604a14944d90bcb3b9e327ed
SHA1:
e9f7d60891a474ec5fec2c6d50fe582ece1b3692
Base64:
0aU=