C:
char c = '\u566B';
printf("%c\n", c); // Output: 噫
JavaScript:
const char = '\u566B';
console.log(char); // Output: 噫
Java:
char c = '\u566B';
System.out.println(c); // Output: 噫
JSON:
{"text": "\u566B"} // Value: 噫
Python:
char = '\u566B'
print(char) # Output: 噫
Perl:
my $char = "\x{566B}";
print $char; # Output: 噫
PHP:
$char = "\x{566B}";
echo $char; // Output: 噫
Ruby:
char = "\u{566B}"
puts char # Output: 噫
Rust:
let c = '\u{566B}';
println!("{}", c); // Output: 噫
Go:
char := '\u566B'
fmt.Printf("%c\n", char) // Output: 噫
CSS:
/* CSS content property */
.element::before {
content: "\00566B"; /* 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%AB
MD5:
9ee783fa287051860d89b5f1a9786b27
SHA1:
f211633120df13c008c5c3725eaf5994a0791ddd
Base64:
5Zmr