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