C:
char c = '\u0427';
printf("%c\n", c); // Output: Ч
JavaScript:
const char = '\u0427';
console.log(char); // Output: Ч
Java:
char c = '\u0427';
System.out.println(c); // Output: Ч
JSON:
{"text": "\u0427"} // Value: Ч
Python:
char = '\u0427'
print(char) # Output: Ч
Perl:
my $char = "\x{0427}";
print $char; # Output: Ч
PHP:
$char = "\x{0427}";
echo $char; // Output: Ч
Ruby:
char = "\u{0427}"
puts char # Output: Ч
Rust:
let c = '\u{427}';
println!("{}", c); // Output: Ч
Go:
char := '\u0427'
fmt.Printf("%c\n", char) // Output: Ч
CSS:
/* CSS content property */
.element::before {
content: "\000427"; /* 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%A7
MD5:
b729ba158ef6e6c38765943740cf1e6f
SHA1:
1b7384dba243abe3bc0e19d6042be2fc308b7e27
Base64:
0Kc=