C:
char c = '\u7098';
printf("%c\n", c); // Output: 炘
JavaScript:
const char = '\u7098';
console.log(char); // Output: 炘
Java:
char c = '\u7098';
System.out.println(c); // Output: 炘
JSON:
{"text": "\u7098"} // Value: 炘
Python:
char = '\u7098'
print(char) # Output: 炘
Perl:
my $char = "\x{7098}";
print $char; # Output: 炘
PHP:
$char = "\x{7098}";
echo $char; // Output: 炘
Ruby:
char = "\u{7098}"
puts char # Output: 炘
Rust:
let c = '\u{7098}';
println!("{}", c); // Output: 炘
Go:
char := '\u7098'
fmt.Printf("%c\n", char) // Output: 炘
CSS:
/* CSS content property */
.element::before {
content: "\007098"; /* 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%98
MD5:
5c6dbafb85f02fb1adbe4c5613485858
SHA1:
65ffa465beaf910e7fe1ceab10e9cbf638029b65
Base64:
54KY