C:
char c = '\u5026';
printf("%c\n", c); // Output: 倦
JavaScript:
const char = '\u5026';
console.log(char); // Output: 倦
Java:
char c = '\u5026';
System.out.println(c); // Output: 倦
JSON:
{"text": "\u5026"} // Value: 倦
Python:
char = '\u5026'
print(char) # Output: 倦
Perl:
my $char = "\x{5026}";
print $char; # Output: 倦
PHP:
$char = "\x{5026}";
echo $char; // Output: 倦
Ruby:
char = "\u{5026}"
puts char # Output: 倦
Rust:
let c = '\u{5026}';
println!("{}", c); // Output: 倦
Go:
char := '\u5026'
fmt.Printf("%c\n", char) // Output: 倦
CSS:
/* CSS content property */
.element::before {
content: "\005026"; /* 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%80%A6
MD5:
7258848173a6de7c03b6d2bb4e59ca86
SHA1:
ea152e61ce0b351db74d5ada2696aba15757548a
Base64:
5YCm