C:
char c = '\u8FAF';
printf("%c\n", c); // Output: 辯
JavaScript:
const char = '\u8FAF';
console.log(char); // Output: 辯
Java:
char c = '\u8FAF';
System.out.println(c); // Output: 辯
JSON:
{"text": "\u8FAF"} // Value: 辯
Python:
char = '\u8FAF'
print(char) # Output: 辯
Perl:
my $char = "\x{8FAF}";
print $char; # Output: 辯
PHP:
$char = "\x{8FAF}";
echo $char; // Output: 辯
Ruby:
char = "\u{8FAF}"
puts char # Output: 辯
Rust:
let c = '\u{8FAF}';
println!("{}", c); // Output: 辯
Go:
char := '\u8FAF'
fmt.Printf("%c\n", char) // Output: 辯
CSS:
/* CSS content property */
.element::before {
content: "\008FAF"; /* 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%BE%AF
MD5:
e66de4ad6928b25781c7fa8d414c0092
SHA1:
d8e3666cedcd1d96e94210b087828edf74ecff94
Base64:
6L6v