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