C:
char c = '\u7084';
printf("%c\n", c); // Output: 炄
JavaScript:
const char = '\u7084';
console.log(char); // Output: 炄
Java:
char c = '\u7084';
System.out.println(c); // Output: 炄
JSON:
{"text": "\u7084"} // Value: 炄
Python:
char = '\u7084'
print(char) # Output: 炄
Perl:
my $char = "\x{7084}";
print $char; # Output: 炄
PHP:
$char = "\x{7084}";
echo $char; // Output: 炄
Ruby:
char = "\u{7084}"
puts char # Output: 炄
Rust:
let c = '\u{7084}';
println!("{}", c); // Output: 炄
Go:
char := '\u7084'
fmt.Printf("%c\n", char) // Output: 炄
CSS:
/* CSS content property */
.element::before {
content: "\007084"; /* 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%84
MD5:
770c079a63bdacabda951c88913cacd9
SHA1:
6736c1b3a4e5a0439bbf0777456ad2a1e7d908bd
Base64:
54KE