C:
char c = '\u7571';
printf("%c\n", c); // Output: 畱
JavaScript:
const char = '\u7571';
console.log(char); // Output: 畱
Java:
char c = '\u7571';
System.out.println(c); // Output: 畱
JSON:
{"text": "\u7571"} // Value: 畱
Python:
char = '\u7571'
print(char) # Output: 畱
Perl:
my $char = "\x{7571}";
print $char; # Output: 畱
PHP:
$char = "\x{7571}";
echo $char; // Output: 畱
Ruby:
char = "\u{7571}"
puts char # Output: 畱
Rust:
let c = '\u{7571}';
println!("{}", c); // Output: 畱
Go:
char := '\u7571'
fmt.Printf("%c\n", char) // Output: 畱
CSS:
/* CSS content property */
.element::before {
content: "\007571"; /* 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=%E7%95%B1
MD5:
c35779f77851cdf3354a74f25b7d74e8
SHA1:
982c2b472ec5aaf9330f9be13c86b21ae70f0cf1
Base64:
55Wx