C:
char c = '\u7081';
printf("%c\n", c); // Output: 炁
JavaScript:
const char = '\u7081';
console.log(char); // Output: 炁
Java:
char c = '\u7081';
System.out.println(c); // Output: 炁
JSON:
{"text": "\u7081"} // Value: 炁
Python:
char = '\u7081'
print(char) # Output: 炁
Perl:
my $char = "\x{7081}";
print $char; # Output: 炁
PHP:
$char = "\x{7081}";
echo $char; // Output: 炁
Ruby:
char = "\u{7081}"
puts char # Output: 炁
Rust:
let c = '\u{7081}';
println!("{}", c); // Output: 炁
Go:
char := '\u7081'
fmt.Printf("%c\n", char) // Output: 炁
CSS:
/* CSS content property */
.element::before {
content: "\007081"; /* 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%81
MD5:
49b5ef465066793db2c87a0a9a9c57d5
SHA1:
6b38aff928d7649e771cb2b779407d28f467bae7
Base64:
54KB