C:
char c = '\u7127';
printf("%c\n", c); // Output: 焧
JavaScript:
const char = '\u7127';
console.log(char); // Output: 焧
Java:
char c = '\u7127';
System.out.println(c); // Output: 焧
JSON:
{"text": "\u7127"} // Value: 焧
Python:
char = '\u7127'
print(char) # Output: 焧
Perl:
my $char = "\x{7127}";
print $char; # Output: 焧
PHP:
$char = "\x{7127}";
echo $char; // Output: 焧
Ruby:
char = "\u{7127}"
puts char # Output: 焧
Rust:
let c = '\u{7127}';
println!("{}", c); // Output: 焧
Go:
char := '\u7127'
fmt.Printf("%c\n", char) // Output: 焧
CSS:
/* CSS content property */
.element::before {
content: "\007127"; /* 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%A7
MD5:
b345b50012ed592b2db3abbbfd91cdab
SHA1:
67ba7839b4b5b6f5860f44ab38bcefee43557cf4
Base64:
54Sn