C:
char c = '\u5049';
printf("%c\n", c); // Output: 偉
JavaScript:
const char = '\u5049';
console.log(char); // Output: 偉
Java:
char c = '\u5049';
System.out.println(c); // Output: 偉
JSON:
{"text": "\u5049"} // Value: 偉
Python:
char = '\u5049'
print(char) # Output: 偉
Perl:
my $char = "\x{5049}";
print $char; # Output: 偉
PHP:
$char = "\x{5049}";
echo $char; // Output: 偉
Ruby:
char = "\u{5049}"
puts char # Output: 偉
Rust:
let c = '\u{5049}';
println!("{}", c); // Output: 偉
Go:
char := '\u5049'
fmt.Printf("%c\n", char) // Output: 偉
CSS:
/* CSS content property */
.element::before {
content: "\005049"; /* 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%89
MD5:
eada6fba0ae0b39954f1c2566a1212ac
SHA1:
23a03ee2e617185444de3f17e73eccd5a755c599
Base64:
5YGJ