C:
char c = '\u67DB';
printf("%c\n", c); // Output: 柛
JavaScript:
const char = '\u67DB';
console.log(char); // Output: 柛
Java:
char c = '\u67DB';
System.out.println(c); // Output: 柛
JSON:
{"text": "\u67DB"} // Value: 柛
Python:
char = '\u67DB'
print(char) # Output: 柛
Perl:
my $char = "\x{67DB}";
print $char; # Output: 柛
PHP:
$char = "\x{67DB}";
echo $char; // Output: 柛
Ruby:
char = "\u{67DB}"
puts char # Output: 柛
Rust:
let c = '\u{67DB}';
println!("{}", c); // Output: 柛
Go:
char := '\u67DB'
fmt.Printf("%c\n", char) // Output: 柛
CSS:
/* CSS content property */
.element::before {
content: "\0067DB"; /* 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%9F%9B
MD5:
37212e4ed96a5ce53c84f51672a4110a
SHA1:
74ed8f8dbe3acf584377174ea10cd8eb5a2bbb39
Base64:
5p+b