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