C:
char c = '\u7172';
printf("%c\n", c); // Output: 煲
JavaScript:
const char = '\u7172';
console.log(char); // Output: 煲
Java:
char c = '\u7172';
System.out.println(c); // Output: 煲
JSON:
{"text": "\u7172"} // Value: 煲
Python:
char = '\u7172'
print(char) # Output: 煲
Perl:
my $char = "\x{7172}";
print $char; # Output: 煲
PHP:
$char = "\x{7172}";
echo $char; // Output: 煲
Ruby:
char = "\u{7172}"
puts char # Output: 煲
Rust:
let c = '\u{7172}';
println!("{}", c); // Output: 煲
Go:
char := '\u7172'
fmt.Printf("%c\n", char) // Output: 煲
CSS:
/* CSS content property */
.element::before {
content: "\007172"; /* 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%85%B2
MD5:
3a951910ad9edecc070fbb2e863592bb
SHA1:
c47dc24c9b545055974c6c9f38fc5e3c1713d5ae
Base64:
54Wy