C:
char c = '\u6F08';
printf("%c\n", c); // Output: 漈
JavaScript:
const char = '\u6F08';
console.log(char); // Output: 漈
Java:
char c = '\u6F08';
System.out.println(c); // Output: 漈
JSON:
{"text": "\u6F08"} // Value: 漈
Python:
char = '\u6F08'
print(char) # Output: 漈
Perl:
my $char = "\x{6F08}";
print $char; # Output: 漈
PHP:
$char = "\x{6F08}";
echo $char; // Output: 漈
Ruby:
char = "\u{6F08}"
puts char # Output: 漈
Rust:
let c = '\u{6F08}';
println!("{}", c); // Output: 漈
Go:
char := '\u6F08'
fmt.Printf("%c\n", char) // Output: 漈
CSS:
/* CSS content property */
.element::before {
content: "\006F08"; /* 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%BC%88
MD5:
7569eaa3478a20be42c7c512cf449303
SHA1:
038fa4c10c9143913e9e2ed7a0d55a6a85cb7453
Base64:
5ryI