C:
char c = '\u0423';
printf("%c\n", c); // Output: У
JavaScript:
const char = '\u0423';
console.log(char); // Output: У
Java:
char c = '\u0423';
System.out.println(c); // Output: У
JSON:
{"text": "\u0423"} // Value: У
Python:
char = '\u0423'
print(char) # Output: У
Perl:
my $char = "\x{0423}";
print $char; # Output: У
PHP:
$char = "\x{0423}";
echo $char; // Output: У
Ruby:
char = "\u{0423}"
puts char # Output: У
Rust:
let c = '\u{423}';
println!("{}", c); // Output: У
Go:
char := '\u0423'
fmt.Printf("%c\n", char) // Output: У
CSS:
/* CSS content property */
.element::before {
content: "\000423"; /* 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%A3
MD5:
e82502e6b29b65a874c0b72ae2367b4b
SHA1:
030a6a796177a0033f249008afb124848c73e3d7
Base64:
0KM=