C:
char c = '\u540B';
printf("%c\n", c); // Output: 吋
JavaScript:
const char = '\u540B';
console.log(char); // Output: 吋
Java:
char c = '\u540B';
System.out.println(c); // Output: 吋
JSON:
{"text": "\u540B"} // Value: 吋
Python:
char = '\u540B'
print(char) # Output: 吋
Perl:
my $char = "\x{540B}";
print $char; # Output: 吋
PHP:
$char = "\x{540B}";
echo $char; // Output: 吋
Ruby:
char = "\u{540B}"
puts char # Output: 吋
Rust:
let c = '\u{540B}';
println!("{}", c); // Output: 吋
Go:
char := '\u540B'
fmt.Printf("%c\n", char) // Output: 吋
CSS:
/* CSS content property */
.element::before {
content: "\00540B"; /* 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%90%8B
MD5:
78976610c8ab9f36e504d114b0efc1f5
SHA1:
031ae7373e8140fb78c710ad64f59c2400157fd2
Base64:
5ZCL