C:
char c = '\u7572';
printf("%c\n", c); // Output: 畲
JavaScript:
const char = '\u7572';
console.log(char); // Output: 畲
Java:
char c = '\u7572';
System.out.println(c); // Output: 畲
JSON:
{"text": "\u7572"} // Value: 畲
Python:
char = '\u7572'
print(char) # Output: 畲
Perl:
my $char = "\x{7572}";
print $char; # Output: 畲
PHP:
$char = "\x{7572}";
echo $char; // Output: 畲
Ruby:
char = "\u{7572}"
puts char # Output: 畲
Rust:
let c = '\u{7572}';
println!("{}", c); // Output: 畲
Go:
char := '\u7572'
fmt.Printf("%c\n", char) // Output: 畲
CSS:
/* CSS content property */
.element::before {
content: "\007572"; /* 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%B2
MD5:
2a6a145d24fda292ce61c971e14f8c60
SHA1:
075de929619819feb0d755a63d3934dd2c72dbb9
Base64:
55Wy