C:
char c = '\u0483';
printf("%c\n", c); // Output: ҃
JavaScript:
const char = '\u0483';
console.log(char); // Output: ҃
Java:
char c = '\u0483';
System.out.println(c); // Output: ҃
JSON:
{"text": "\u0483"} // Value: ҃
Python:
char = '\u0483'
print(char) # Output: ҃
Perl:
my $char = "\x{0483}";
print $char; # Output: ҃
PHP:
$char = "\x{0483}";
echo $char; // Output: ҃
Ruby:
char = "\u{0483}"
puts char # Output: ҃
Rust:
let c = '\u{483}';
println!("{}", c); // Output: ҃
Go:
char := '\u0483'
fmt.Printf("%c\n", char) // Output: ҃
CSS:
/* CSS content property */
.element::before {
content: "\000483"; /* 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%83
MD5:
d02506ce94685353319f55169cae3038
SHA1:
e5d7f4fc5462c7734a5afb52cec96a54f284f5ff
Base64:
0oM=