C:
char c = '\u6B69';
printf("%c\n", c); // Output: 歩
JavaScript:
const char = '\u6B69';
console.log(char); // Output: 歩
Java:
char c = '\u6B69';
System.out.println(c); // Output: 歩
JSON:
{"text": "\u6B69"} // Value: 歩
Python:
char = '\u6B69'
print(char) # Output: 歩
Perl:
my $char = "\x{6B69}";
print $char; # Output: 歩
PHP:
$char = "\x{6B69}";
echo $char; // Output: 歩
Ruby:
char = "\u{6B69}"
puts char # Output: 歩
Rust:
let c = '\u{6B69}';
println!("{}", c); // Output: 歩
Go:
char := '\u6B69'
fmt.Printf("%c\n", char) // Output: 歩
CSS:
/* CSS content property */
.element::before {
content: "\006B69"; /* 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%AD%A9
MD5:
9e22488bf53295260c1d8fb3c182cc60
SHA1:
38ddc2551552135555004af6f55b872b03cf141f
Base64:
5q2p