C:
char c = '\u6825';
printf("%c\n", c); // Output: 栥
JavaScript:
const char = '\u6825';
console.log(char); // Output: 栥
Java:
char c = '\u6825';
System.out.println(c); // Output: 栥
JSON:
{"text": "\u6825"} // Value: 栥
Python:
char = '\u6825'
print(char) # Output: 栥
Perl:
my $char = "\x{6825}";
print $char; # Output: 栥
PHP:
$char = "\x{6825}";
echo $char; // Output: 栥
Ruby:
char = "\u{6825}"
puts char # Output: 栥
Rust:
let c = '\u{6825}';
println!("{}", c); // Output: 栥
Go:
char := '\u6825'
fmt.Printf("%c\n", char) // Output: 栥
CSS:
/* CSS content property */
.element::before {
content: "\006825"; /* 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%A0%A5
MD5:
d913aadb05c8d3c50d8807fdd23bb249
SHA1:
8f09e159db813574bd9ef361c24461cf986b70dd
Base64:
5qCl