C:
char c = '\u7981';
printf("%c\n", c); // Output: 禁
JavaScript:
const char = '\u7981';
console.log(char); // Output: 禁
Java:
char c = '\u7981';
System.out.println(c); // Output: 禁
JSON:
{"text": "\u7981"} // Value: 禁
Python:
char = '\u7981'
print(char) # Output: 禁
Perl:
my $char = "\x{7981}";
print $char; # Output: 禁
PHP:
$char = "\x{7981}";
echo $char; // Output: 禁
Ruby:
char = "\u{7981}"
puts char # Output: 禁
Rust:
let c = '\u{7981}';
println!("{}", c); // Output: 禁
Go:
char := '\u7981'
fmt.Printf("%c\n", char) // Output: 禁
CSS:
/* CSS content property */
.element::before {
content: "\007981"; /* 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=%E7%A6%81
MD5:
0f20f4ddf57da0f3e15cddcc67f69824
SHA1:
607629e4f0bca620d8ddb942cd0e2fc6fa80558e
Base64:
56aB