C:
char c = '\u0433';
printf("%c\n", c); // Output: г
JavaScript:
const char = '\u0433';
console.log(char); // Output: г
Java:
char c = '\u0433';
System.out.println(c); // Output: г
JSON:
{"text": "\u0433"} // Value: г
Python:
char = '\u0433'
print(char) # Output: г
Perl:
my $char = "\x{0433}";
print $char; # Output: г
PHP:
$char = "\x{0433}";
echo $char; // Output: г
Ruby:
char = "\u{0433}"
puts char # Output: г
Rust:
let c = '\u{433}';
println!("{}", c); // Output: г
Go:
char := '\u0433'
fmt.Printf("%c\n", char) // Output: г
CSS:
/* CSS content property */
.element::before {
content: "\000433"; /* 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=%D0%B3
MD5:
9f5bbb6f2fe303b1806d9d8645c4d89e
SHA1:
8e8ca8428150664eadd4baf837b14c4960b19df7
Base64:
0LM=