C:
char c = '\u7082';
printf("%c\n", c); // Output: 炂
JavaScript:
const char = '\u7082';
console.log(char); // Output: 炂
Java:
char c = '\u7082';
System.out.println(c); // Output: 炂
JSON:
{"text": "\u7082"} // Value: 炂
Python:
char = '\u7082'
print(char) # Output: 炂
Perl:
my $char = "\x{7082}";
print $char; # Output: 炂
PHP:
$char = "\x{7082}";
echo $char; // Output: 炂
Ruby:
char = "\u{7082}"
puts char # Output: 炂
Rust:
let c = '\u{7082}';
println!("{}", c); // Output: 炂
Go:
char := '\u7082'
fmt.Printf("%c\n", char) // Output: 炂
CSS:
/* CSS content property */
.element::before {
content: "\007082"; /* 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%82
MD5:
263390fe273135108667de1722129c2e
SHA1:
99efeb5b9191303f2249c367accdb7e9da7aa0ad
Base64:
54KC