C:
char c = '\u71F5';
printf("%c\n", c); // Output: 燵
JavaScript:
const char = '\u71F5';
console.log(char); // Output: 燵
Java:
char c = '\u71F5';
System.out.println(c); // Output: 燵
JSON:
{"text": "\u71F5"} // Value: 燵
Python:
char = '\u71F5'
print(char) # Output: 燵
Perl:
my $char = "\x{71F5}";
print $char; # Output: 燵
PHP:
$char = "\x{71F5}";
echo $char; // Output: 燵
Ruby:
char = "\u{71F5}"
puts char # Output: 燵
Rust:
let c = '\u{71F5}';
println!("{}", c); // Output: 燵
Go:
char := '\u71F5'
fmt.Printf("%c\n", char) // Output: 燵
CSS:
/* CSS content property */
.element::before {
content: "\0071F5"; /* 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%87%B5
MD5:
796d1793845a4c24b3d23979e075b275
SHA1:
051b0a2e3978ca6b8d22a7d5c6566da132aa3b85
Base64:
54e1