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