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