C:
char c = '\u83DF';
printf("%c\n", c); // Output: 菟
JavaScript:
const char = '\u83DF';
console.log(char); // Output: 菟
Java:
char c = '\u83DF';
System.out.println(c); // Output: 菟
JSON:
{"text": "\u83DF"} // Value: 菟
Python:
char = '\u83DF'
print(char) # Output: 菟
Perl:
my $char = "\x{83DF}";
print $char; # Output: 菟
PHP:
$char = "\x{83DF}";
echo $char; // Output: 菟
Ruby:
char = "\u{83DF}"
puts char # Output: 菟
Rust:
let c = '\u{83DF}';
println!("{}", c); // Output: 菟
Go:
char := '\u83DF'
fmt.Printf("%c\n", char) // Output: 菟
CSS:
/* CSS content property */
.element::before {
content: "\0083DF"; /* 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%8F%9F
MD5:
d9de6417eaffa392bc24e3d95ca3ce54
SHA1:
cc89e2bcd550f12e230e958e8911489837027f66
Base64:
6I+f