C:
char c = '\u5044';
printf("%c\n", c); // Output: 偄
JavaScript:
const char = '\u5044';
console.log(char); // Output: 偄
Java:
char c = '\u5044';
System.out.println(c); // Output: 偄
JSON:
{"text": "\u5044"} // Value: 偄
Python:
char = '\u5044'
print(char) # Output: 偄
Perl:
my $char = "\x{5044}";
print $char; # Output: 偄
PHP:
$char = "\x{5044}";
echo $char; // Output: 偄
Ruby:
char = "\u{5044}"
puts char # Output: 偄
Rust:
let c = '\u{5044}';
println!("{}", c); // Output: 偄
Go:
char := '\u5044'
fmt.Printf("%c\n", char) // Output: 偄
CSS:
/* CSS content property */
.element::before {
content: "\005044"; /* 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%84
MD5:
398d7cd9c55c7f050296e9b69100b9be
SHA1:
52347bff548eb5bdc802c4260357f89716a5777d
Base64:
5YGE