C:
char c = '\u5FAD';
printf("%c\n", c); // Output: 徭
JavaScript:
const char = '\u5FAD';
console.log(char); // Output: 徭
Java:
char c = '\u5FAD';
System.out.println(c); // Output: 徭
JSON:
{"text": "\u5FAD"} // Value: 徭
Python:
char = '\u5FAD'
print(char) # Output: 徭
Perl:
my $char = "\x{5FAD}";
print $char; # Output: 徭
PHP:
$char = "\x{5FAD}";
echo $char; // Output: 徭
Ruby:
char = "\u{5FAD}"
puts char # Output: 徭
Rust:
let c = '\u{5FAD}';
println!("{}", c); // Output: 徭
Go:
char := '\u5FAD'
fmt.Printf("%c\n", char) // Output: 徭
CSS:
/* CSS content property */
.element::before {
content: "\005FAD"; /* 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%BE%AD
MD5:
1ce0c7554728ad34298f817f37429c94
SHA1:
dcfcfcbb0bbd5dc023cc55d90a67aebbebc0695d
Base64:
5b6t