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