C:
char c = '\u4F2B';
printf("%c\n", c); // Output: 伫
JavaScript:
const char = '\u4F2B';
console.log(char); // Output: 伫
Java:
char c = '\u4F2B';
System.out.println(c); // Output: 伫
JSON:
{"text": "\u4F2B"} // Value: 伫
Python:
char = '\u4F2B'
print(char) # Output: 伫
Perl:
my $char = "\x{4F2B}";
print $char; # Output: 伫
PHP:
$char = "\x{4F2B}";
echo $char; // Output: 伫
Ruby:
char = "\u{4F2B}"
puts char # Output: 伫
Rust:
let c = '\u{4F2B}';
println!("{}", c); // Output: 伫
Go:
char := '\u4F2B'
fmt.Printf("%c\n", char) // Output: 伫
CSS:
/* CSS content property */
.element::before {
content: "\004F2B"; /* 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%AB
MD5:
67709befde8cfa6c03bfddcc7bdfa2dc
SHA1:
7308e874e32ee5baebe35cc83c791eb8c0ba037b
Base64:
5Lyr