C:
char c = '\u8F43';
printf("%c\n", c); // Output: 轃
JavaScript:
const char = '\u8F43';
console.log(char); // Output: 轃
Java:
char c = '\u8F43';
System.out.println(c); // Output: 轃
JSON:
{"text": "\u8F43"} // Value: 轃
Python:
char = '\u8F43'
print(char) # Output: 轃
Perl:
my $char = "\x{8F43}";
print $char; # Output: 轃
PHP:
$char = "\x{8F43}";
echo $char; // Output: 轃
Ruby:
char = "\u{8F43}"
puts char # Output: 轃
Rust:
let c = '\u{8F43}';
println!("{}", c); // Output: 轃
Go:
char := '\u8F43'
fmt.Printf("%c\n", char) // Output: 轃
CSS:
/* CSS content property */
.element::before {
content: "\008F43"; /* 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=%E8%BD%83
MD5:
5bbbe8e2e36c581b1f507d9ed9787ddf
SHA1:
1f89a7d23dd748663cefbff59ddde7db1c313ed2
Base64:
6L2D