C:
char c = '\u5015';
printf("%c\n", c); // Output: 倕
JavaScript:
const char = '\u5015';
console.log(char); // Output: 倕
Java:
char c = '\u5015';
System.out.println(c); // Output: 倕
JSON:
{"text": "\u5015"} // Value: 倕
Python:
char = '\u5015'
print(char) # Output: 倕
Perl:
my $char = "\x{5015}";
print $char; # Output: 倕
PHP:
$char = "\x{5015}";
echo $char; // Output: 倕
Ruby:
char = "\u{5015}"
puts char # Output: 倕
Rust:
let c = '\u{5015}';
println!("{}", c); // Output: 倕
Go:
char := '\u5015'
fmt.Printf("%c\n", char) // Output: 倕
CSS:
/* CSS content property */
.element::before {
content: "\005015"; /* 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%80%95
MD5:
7bea205d728a156161a131a4bc193400
SHA1:
7ab96d0be531389cd1264c58d87214787cf523fd
Base64:
5YCV