C:
char c = '\u5670';
printf("%c\n", c); // Output: 噰
JavaScript:
const char = '\u5670';
console.log(char); // Output: 噰
Java:
char c = '\u5670';
System.out.println(c); // Output: 噰
JSON:
{"text": "\u5670"} // Value: 噰
Python:
char = '\u5670'
print(char) # Output: 噰
Perl:
my $char = "\x{5670}";
print $char; # Output: 噰
PHP:
$char = "\x{5670}";
echo $char; // Output: 噰
Ruby:
char = "\u{5670}"
puts char # Output: 噰
Rust:
let c = '\u{5670}';
println!("{}", c); // Output: 噰
Go:
char := '\u5670'
fmt.Printf("%c\n", char) // Output: 噰
CSS:
/* CSS content property */
.element::before {
content: "\005670"; /* 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%99%B0
MD5:
842f9ec249c64442b283ff6f2915531a
SHA1:
bdf55c99c98827cc8b79e82d4d4f1425e4d8cea1
Base64:
5Zmw