C:
char c = '\u5068';
printf("%c\n", c); // Output: 偨
JavaScript:
const char = '\u5068';
console.log(char); // Output: 偨
Java:
char c = '\u5068';
System.out.println(c); // Output: 偨
JSON:
{"text": "\u5068"} // Value: 偨
Python:
char = '\u5068'
print(char) # Output: 偨
Perl:
my $char = "\x{5068}";
print $char; # Output: 偨
PHP:
$char = "\x{5068}";
echo $char; // Output: 偨
Ruby:
char = "\u{5068}"
puts char # Output: 偨
Rust:
let c = '\u{5068}';
println!("{}", c); // Output: 偨
Go:
char := '\u5068'
fmt.Printf("%c\n", char) // Output: 偨
CSS:
/* CSS content property */
.element::before {
content: "\005068"; /* 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%A8
MD5:
5530a531792cd7ffc29a2f6b3de0e882
SHA1:
19995499f157ede2a8a3d071960d44a9b0fe2be7
Base64:
5YGo