C:
char c = '\u5BEB';
printf("%c\n", c); // Output: 寫
JavaScript:
const char = '\u5BEB';
console.log(char); // Output: 寫
Java:
char c = '\u5BEB';
System.out.println(c); // Output: 寫
JSON:
{"text": "\u5BEB"} // Value: 寫
Python:
char = '\u5BEB'
print(char) # Output: 寫
Perl:
my $char = "\x{5BEB}";
print $char; # Output: 寫
PHP:
$char = "\x{5BEB}";
echo $char; // Output: 寫
Ruby:
char = "\u{5BEB}"
puts char # Output: 寫
Rust:
let c = '\u{5BEB}';
println!("{}", c); // Output: 寫
Go:
char := '\u5BEB'
fmt.Printf("%c\n", char) // Output: 寫
CSS:
/* CSS content property */
.element::before {
content: "\005BEB"; /* 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%AF%AB
MD5:
8107c2059917c94f9322c8f3d98a7475
SHA1:
29932f210557959f45e51b80d38d5cdd6c3a5f42
Base64:
5a+r