C:
char c = '\u5F4B';
printf("%c\n", c); // Output: 彋
JavaScript:
const char = '\u5F4B';
console.log(char); // Output: 彋
Java:
char c = '\u5F4B';
System.out.println(c); // Output: 彋
JSON:
{"text": "\u5F4B"} // Value: 彋
Python:
char = '\u5F4B'
print(char) # Output: 彋
Perl:
my $char = "\x{5F4B}";
print $char; # Output: 彋
PHP:
$char = "\x{5F4B}";
echo $char; // Output: 彋
Ruby:
char = "\u{5F4B}"
puts char # Output: 彋
Rust:
let c = '\u{5F4B}';
println!("{}", c); // Output: 彋
Go:
char := '\u5F4B'
fmt.Printf("%c\n", char) // Output: 彋
CSS:
/* CSS content property */
.element::before {
content: "\005F4B"; /* 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%BD%8B
MD5:
c8b7fac3410570c4bd22de3d1094423a
SHA1:
a0a9d1b4cf174fc90771d7a1498c40c59e66434c
Base64:
5b2L