C:
char c = '\u79B0';
printf("%c\n", c); // Output: 禰
JavaScript:
const char = '\u79B0';
console.log(char); // Output: 禰
Java:
char c = '\u79B0';
System.out.println(c); // Output: 禰
JSON:
{"text": "\u79B0"} // Value: 禰
Python:
char = '\u79B0'
print(char) # Output: 禰
Perl:
my $char = "\x{79B0}";
print $char; # Output: 禰
PHP:
$char = "\x{79B0}";
echo $char; // Output: 禰
Ruby:
char = "\u{79B0}"
puts char # Output: 禰
Rust:
let c = '\u{79B0}';
println!("{}", c); // Output: 禰
Go:
char := '\u79B0'
fmt.Printf("%c\n", char) // Output: 禰
CSS:
/* CSS content property */
.element::before {
content: "\0079B0"; /* 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%B0
MD5:
60d163117c4fd5e4ceecee77d8b8e8d2
SHA1:
f49534902a915de68cfae689d3bcd7221eb87f4d
Base64:
56aw