C:
char c = '\u7190';
printf("%c\n", c); // Output: 熐
JavaScript:
const char = '\u7190';
console.log(char); // Output: 熐
Java:
char c = '\u7190';
System.out.println(c); // Output: 熐
JSON:
{"text": "\u7190"} // Value: 熐
Python:
char = '\u7190'
print(char) # Output: 熐
Perl:
my $char = "\x{7190}";
print $char; # Output: 熐
PHP:
$char = "\x{7190}";
echo $char; // Output: 熐
Ruby:
char = "\u{7190}"
puts char # Output: 熐
Rust:
let c = '\u{7190}';
println!("{}", c); // Output: 熐
Go:
char := '\u7190'
fmt.Printf("%c\n", char) // Output: 熐
CSS:
/* CSS content property */
.element::before {
content: "\007190"; /* 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=%E7%86%90
MD5:
13c0007e859eaa48bd999454e906b089
SHA1:
7d18b18a4c3ffdb9e9f7922beb9dc7b1a11fd1b8
Base64:
54aQ