C:
char c = '\u6803';
printf("%c\n", c); // Output: 栃
JavaScript:
const char = '\u6803';
console.log(char); // Output: 栃
Java:
char c = '\u6803';
System.out.println(c); // Output: 栃
JSON:
{"text": "\u6803"} // Value: 栃
Python:
char = '\u6803'
print(char) # Output: 栃
Perl:
my $char = "\x{6803}";
print $char; # Output: 栃
PHP:
$char = "\x{6803}";
echo $char; // Output: 栃
Ruby:
char = "\u{6803}"
puts char # Output: 栃
Rust:
let c = '\u{6803}';
println!("{}", c); // Output: 栃
Go:
char := '\u6803'
fmt.Printf("%c\n", char) // Output: 栃
CSS:
/* CSS content property */
.element::before {
content: "\006803"; /* 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%83
MD5:
5458bc544de35c9ca5dff5994859b557
SHA1:
682f9e1acb0844e51bfbb1970078bb89f8e8a5f1
Base64:
5qCD