C:
char c = '\u0481';
printf("%c\n", c); // Output: ҁ
JavaScript:
const char = '\u0481';
console.log(char); // Output: ҁ
Java:
char c = '\u0481';
System.out.println(c); // Output: ҁ
JSON:
{"text": "\u0481"} // Value: ҁ
Python:
char = '\u0481'
print(char) # Output: ҁ
Perl:
my $char = "\x{0481}";
print $char; # Output: ҁ
PHP:
$char = "\x{0481}";
echo $char; // Output: ҁ
Ruby:
char = "\u{0481}"
puts char # Output: ҁ
Rust:
let c = '\u{481}';
println!("{}", c); // Output: ҁ
Go:
char := '\u0481'
fmt.Printf("%c\n", char) // Output: ҁ
CSS:
/* CSS content property */
.element::before {
content: "\000481"; /* 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%81
MD5:
1d8cca05506d7ad2d56de1c9736fd1fd
SHA1:
e2a4a1e18fa7a2ca9866a0758260877d4a66e674
Base64:
0oE=