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