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