C:
char c = '\u5869';
printf("%c\n", c); // Output: 塩
JavaScript:
const char = '\u5869';
console.log(char); // Output: 塩
Java:
char c = '\u5869';
System.out.println(c); // Output: 塩
JSON:
{"text": "\u5869"} // Value: 塩
Python:
char = '\u5869'
print(char) # Output: 塩
Perl:
my $char = "\x{5869}";
print $char; # Output: 塩
PHP:
$char = "\x{5869}";
echo $char; // Output: 塩
Ruby:
char = "\u{5869}"
puts char # Output: 塩
Rust:
let c = '\u{5869}';
println!("{}", c); // Output: 塩
Go:
char := '\u5869'
fmt.Printf("%c\n", char) // Output: 塩
CSS:
/* CSS content property */
.element::before {
content: "\005869"; /* 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%A1%A9
MD5:
62b5d415c322d8be0a2601a4e0a64a58
SHA1:
9f9ffe808984eb399056d717752ce584f4503ca1
Base64:
5aGp