C:
char c = '\u4F0C';
printf("%c\n", c); // Output: 伌
JavaScript:
const char = '\u4F0C';
console.log(char); // Output: 伌
Java:
char c = '\u4F0C';
System.out.println(c); // Output: 伌
JSON:
{"text": "\u4F0C"} // Value: 伌
Python:
char = '\u4F0C'
print(char) # Output: 伌
Perl:
my $char = "\x{4F0C}";
print $char; # Output: 伌
PHP:
$char = "\x{4F0C}";
echo $char; // Output: 伌
Ruby:
char = "\u{4F0C}"
puts char # Output: 伌
Rust:
let c = '\u{4F0C}';
println!("{}", c); // Output: 伌
Go:
char := '\u4F0C'
fmt.Printf("%c\n", char) // Output: 伌
CSS:
/* CSS content property */
.element::before {
content: "\004F0C"; /* 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=%E4%BC%8C
MD5:
f1159fa9b9033251f773fdb15f618f13
SHA1:
804ccd6b4580c2bce4cabbc53032d15620a99bfb
Base64:
5LyM