C:
char c = '\u830B';
printf("%c\n", c); // Output: 茋
JavaScript:
const char = '\u830B';
console.log(char); // Output: 茋
Java:
char c = '\u830B';
System.out.println(c); // Output: 茋
JSON:
{"text": "\u830B"} // Value: 茋
Python:
char = '\u830B'
print(char) # Output: 茋
Perl:
my $char = "\x{830B}";
print $char; # Output: 茋
PHP:
$char = "\x{830B}";
echo $char; // Output: 茋
Ruby:
char = "\u{830B}"
puts char # Output: 茋
Rust:
let c = '\u{830B}';
println!("{}", c); // Output: 茋
Go:
char := '\u830B'
fmt.Printf("%c\n", char) // Output: 茋
CSS:
/* CSS content property */
.element::before {
content: "\00830B"; /* 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=%E8%8C%8B
MD5:
d4c31a524e4ec41a5accb7e216989838
SHA1:
867387de2d9b87b7c508257f9d405c808e6393f8
Base64:
6IyL