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