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