C:
char c = '\u6682';
printf("%c\n", c); // Output: 暂
JavaScript:
const char = '\u6682';
console.log(char); // Output: 暂
Java:
char c = '\u6682';
System.out.println(c); // Output: 暂
JSON:
{"text": "\u6682"} // Value: 暂
Python:
char = '\u6682'
print(char) # Output: 暂
Perl:
my $char = "\x{6682}";
print $char; # Output: 暂
PHP:
$char = "\x{6682}";
echo $char; // Output: 暂
Ruby:
char = "\u{6682}"
puts char # Output: 暂
Rust:
let c = '\u{6682}';
println!("{}", c); // Output: 暂
Go:
char := '\u6682'
fmt.Printf("%c\n", char) // Output: 暂
CSS:
/* CSS content property */
.element::before {
content: "\006682"; /* 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%82
MD5:
de7a2caa54796ea9ee76540b61518d1c
SHA1:
8698c4321165f1edba2365c4f09fae783aac75eb
Base64:
5pqC