C:
char c = '\u708A';
printf("%c\n", c); // Output: 炊
JavaScript:
const char = '\u708A';
console.log(char); // Output: 炊
Java:
char c = '\u708A';
System.out.println(c); // Output: 炊
JSON:
{"text": "\u708A"} // Value: 炊
Python:
char = '\u708A'
print(char) # Output: 炊
Perl:
my $char = "\x{708A}";
print $char; # Output: 炊
PHP:
$char = "\x{708A}";
echo $char; // Output: 炊
Ruby:
char = "\u{708A}"
puts char # Output: 炊
Rust:
let c = '\u{708A}';
println!("{}", c); // Output: 炊
Go:
char := '\u708A'
fmt.Printf("%c\n", char) // Output: 炊
CSS:
/* CSS content property */
.element::before {
content: "\00708A"; /* 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%8A
MD5:
be5d4517c422b994ef2fbbdb358f51c7
SHA1:
2dd2ebf6f337f45c0f96c5f9a0fabf4af0cbe47f
Base64:
54KK