C:
char c = '\u51AB';
printf("%c\n", c); // Output: 冫
JavaScript:
const char = '\u51AB';
console.log(char); // Output: 冫
Java:
char c = '\u51AB';
System.out.println(c); // Output: 冫
JSON:
{"text": "\u51AB"} // Value: 冫
Python:
char = '\u51AB'
print(char) # Output: 冫
Perl:
my $char = "\x{51AB}";
print $char; # Output: 冫
PHP:
$char = "\x{51AB}";
echo $char; // Output: 冫
Ruby:
char = "\u{51AB}"
puts char # Output: 冫
Rust:
let c = '\u{51AB}';
println!("{}", c); // Output: 冫
Go:
char := '\u51AB'
fmt.Printf("%c\n", char) // Output: 冫
CSS:
/* CSS content property */
.element::before {
content: "\0051AB"; /* 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%86%AB
MD5:
5f7ebaf492335c2fe98e3faa4e56e24a
SHA1:
0fb09c31ad3df1d53e8e20035bcd5488dab38e6e
Base64:
5Yar