C:
char c = '\u6681';
printf("%c\n", c); // Output: 暁
JavaScript:
const char = '\u6681';
console.log(char); // Output: 暁
Java:
char c = '\u6681';
System.out.println(c); // Output: 暁
JSON:
{"text": "\u6681"} // Value: 暁
Python:
char = '\u6681'
print(char) # Output: 暁
Perl:
my $char = "\x{6681}";
print $char; # Output: 暁
PHP:
$char = "\x{6681}";
echo $char; // Output: 暁
Ruby:
char = "\u{6681}"
puts char # Output: 暁
Rust:
let c = '\u{6681}';
println!("{}", c); // Output: 暁
Go:
char := '\u6681'
fmt.Printf("%c\n", char) // Output: 暁
CSS:
/* CSS content property */
.element::before {
content: "\006681"; /* 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=%E6%9A%81
MD5:
69c1f870c2bb9ac4a87719613ef41147
SHA1:
ea26b4a1ff923636b675cf1df21770379cb9a69b
Base64:
5pqB