C:
char c = '\u0485';
printf("%c\n", c); // Output: ҅
JavaScript:
const char = '\u0485';
console.log(char); // Output: ҅
Java:
char c = '\u0485';
System.out.println(c); // Output: ҅
JSON:
{"text": "\u0485"} // Value: ҅
Python:
char = '\u0485'
print(char) # Output: ҅
Perl:
my $char = "\x{0485}";
print $char; # Output: ҅
PHP:
$char = "\x{0485}";
echo $char; // Output: ҅
Ruby:
char = "\u{0485}"
puts char # Output: ҅
Rust:
let c = '\u{485}';
println!("{}", c); // Output: ҅
Go:
char := '\u0485'
fmt.Printf("%c\n", char) // Output: ҅
CSS:
/* CSS content property */
.element::before {
content: "\000485"; /* 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=%D2%85
MD5:
4bed51b990244f88768e540f27b10232
SHA1:
c90a437734b3474a3a3bdf7147347d13605b7840
Base64:
0oU=