C:
char c = '\u5008';
printf("%c\n", c); // Output: 倈
JavaScript:
const char = '\u5008';
console.log(char); // Output: 倈
Java:
char c = '\u5008';
System.out.println(c); // Output: 倈
JSON:
{"text": "\u5008"} // Value: 倈
Python:
char = '\u5008'
print(char) # Output: 倈
Perl:
my $char = "\x{5008}";
print $char; # Output: 倈
PHP:
$char = "\x{5008}";
echo $char; // Output: 倈
Ruby:
char = "\u{5008}"
puts char # Output: 倈
Rust:
let c = '\u{5008}';
println!("{}", c); // Output: 倈
Go:
char := '\u5008'
fmt.Printf("%c\n", char) // Output: 倈
CSS:
/* CSS content property */
.element::before {
content: "\005008"; /* 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%88
MD5:
34c1df2fac8b102ec809c41bd9d1acae
SHA1:
015ef0a95b984af050b3ae707cc0ef3f58a9c36a
Base64:
5YCI