C:
char c = '\u5F46';
printf("%c\n", c); // Output: 彆
JavaScript:
const char = '\u5F46';
console.log(char); // Output: 彆
Java:
char c = '\u5F46';
System.out.println(c); // Output: 彆
JSON:
{"text": "\u5F46"} // Value: 彆
Python:
char = '\u5F46'
print(char) # Output: 彆
Perl:
my $char = "\x{5F46}";
print $char; # Output: 彆
PHP:
$char = "\x{5F46}";
echo $char; // Output: 彆
Ruby:
char = "\u{5F46}"
puts char # Output: 彆
Rust:
let c = '\u{5F46}';
println!("{}", c); // Output: 彆
Go:
char := '\u5F46'
fmt.Printf("%c\n", char) // Output: 彆
CSS:
/* CSS content property */
.element::before {
content: "\005F46"; /* 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%86
MD5:
414a1224d0968585f56a6be0425c128d
SHA1:
91979e6b8ed1f52f798a48afcd9b4751459c22b8
Base64:
5b2G