C:
char c = '\u6B55';
printf("%c\n", c); // Output: 歕
JavaScript:
const char = '\u6B55';
console.log(char); // Output: 歕
Java:
char c = '\u6B55';
System.out.println(c); // Output: 歕
JSON:
{"text": "\u6B55"} // Value: 歕
Python:
char = '\u6B55'
print(char) # Output: 歕
Perl:
my $char = "\x{6B55}";
print $char; # Output: 歕
PHP:
$char = "\x{6B55}";
echo $char; // Output: 歕
Ruby:
char = "\u{6B55}"
puts char # Output: 歕
Rust:
let c = '\u{6B55}';
println!("{}", c); // Output: 歕
Go:
char := '\u6B55'
fmt.Printf("%c\n", char) // Output: 歕
CSS:
/* CSS content property */
.element::before {
content: "\006B55"; /* 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%AD%95
MD5:
18a20b902f5d1ebc7311967f9e935e88
SHA1:
7f10fb496df0dbb926d22e0484017fdd0ece63c6
Base64:
5q2V