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