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