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