C:
char c = '\u5149';
printf("%c\n", c); // Output: 光
JavaScript:
const char = '\u5149';
console.log(char); // Output: 光
Java:
char c = '\u5149';
System.out.println(c); // Output: 光
JSON:
{"text": "\u5149"} // Value: 光
Python:
char = '\u5149'
print(char) # Output: 光
Perl:
my $char = "\x{5149}";
print $char; # Output: 光
PHP:
$char = "\x{5149}";
echo $char; // Output: 光
Ruby:
char = "\u{5149}"
puts char # Output: 光
Rust:
let c = '\u{5149}';
println!("{}", c); // Output: 光
Go:
char := '\u5149'
fmt.Printf("%c\n", char) // Output: 光
CSS:
/* CSS content property */
.element::before {
content: "\005149"; /* 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=%E5%85%89
MD5:
4af845a4cd9b0c02721a8226c08d20cd
SHA1:
5ae567c880da47c96752fc4bc5713e7b858acb83
Base64:
5YWJ