C:
char c = '\u7080';
printf("%c\n", c); // Output: 炀
JavaScript:
const char = '\u7080';
console.log(char); // Output: 炀
Java:
char c = '\u7080';
System.out.println(c); // Output: 炀
JSON:
{"text": "\u7080"} // Value: 炀
Python:
char = '\u7080'
print(char) # Output: 炀
Perl:
my $char = "\x{7080}";
print $char; # Output: 炀
PHP:
$char = "\x{7080}";
echo $char; // Output: 炀
Ruby:
char = "\u{7080}"
puts char # Output: 炀
Rust:
let c = '\u{7080}';
println!("{}", c); // Output: 炀
Go:
char := '\u7080'
fmt.Printf("%c\n", char) // Output: 炀
CSS:
/* CSS content property */
.element::before {
content: "\007080"; /* 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%82%80
MD5:
622490d792ebf59be50832ebda79e18c
SHA1:
cb4ed6919258e437bced01913a3b15b9a0e55f08
Base64:
54KA