C:
char c = '\u5055';
printf("%c\n", c); // Output: 偕
JavaScript:
const char = '\u5055';
console.log(char); // Output: 偕
Java:
char c = '\u5055';
System.out.println(c); // Output: 偕
JSON:
{"text": "\u5055"} // Value: 偕
Python:
char = '\u5055'
print(char) # Output: 偕
Perl:
my $char = "\x{5055}";
print $char; # Output: 偕
PHP:
$char = "\x{5055}";
echo $char; // Output: 偕
Ruby:
char = "\u{5055}"
puts char # Output: 偕
Rust:
let c = '\u{5055}';
println!("{}", c); // Output: 偕
Go:
char := '\u5055'
fmt.Printf("%c\n", char) // Output: 偕
CSS:
/* CSS content property */
.element::before {
content: "\005055"; /* 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%95
MD5:
f8d1fe7e2720850e39c36d4e2968be36
SHA1:
146114fbb22384388901932cedd1a594a82c7f64
Base64:
5YGV