C:
char c = '\u8A6B';
printf("%c\n", c); // Output: 詫
JavaScript:
const char = '\u8A6B';
console.log(char); // Output: 詫
Java:
char c = '\u8A6B';
System.out.println(c); // Output: 詫
JSON:
{"text": "\u8A6B"} // Value: 詫
Python:
char = '\u8A6B'
print(char) # Output: 詫
Perl:
my $char = "\x{8A6B}";
print $char; # Output: 詫
PHP:
$char = "\x{8A6B}";
echo $char; // Output: 詫
Ruby:
char = "\u{8A6B}"
puts char # Output: 詫
Rust:
let c = '\u{8A6B}';
println!("{}", c); // Output: 詫
Go:
char := '\u8A6B'
fmt.Printf("%c\n", char) // Output: 詫
CSS:
/* CSS content property */
.element::before {
content: "\008A6B"; /* 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=%E8%A9%AB
MD5:
845e0102f0a6ab38f313f37ab16dabc2
SHA1:
986c59e570ed02530a466c63b39780ef15ee7f65
Base64:
6Kmr