C:
char c = '\u5072';
printf("%c\n", c); // Output: 偲
JavaScript:
const char = '\u5072';
console.log(char); // Output: 偲
Java:
char c = '\u5072';
System.out.println(c); // Output: 偲
JSON:
{"text": "\u5072"} // Value: 偲
Python:
char = '\u5072'
print(char) # Output: 偲
Perl:
my $char = "\x{5072}";
print $char; # Output: 偲
PHP:
$char = "\x{5072}";
echo $char; // Output: 偲
Ruby:
char = "\u{5072}"
puts char # Output: 偲
Rust:
let c = '\u{5072}';
println!("{}", c); // Output: 偲
Go:
char := '\u5072'
fmt.Printf("%c\n", char) // Output: 偲
CSS:
/* CSS content property */
.element::before {
content: "\005072"; /* 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%81%B2
MD5:
7b667286d82369cbd03b3c1f63d34166
SHA1:
9ad4d62a34e6dbb50fe049e333c9024934aa6258
Base64:
5YGy