C:
char c = '\u5272';
printf("%c\n", c); // Output: 割
JavaScript:
const char = '\u5272';
console.log(char); // Output: 割
Java:
char c = '\u5272';
System.out.println(c); // Output: 割
JSON:
{"text": "\u5272"} // Value: 割
Python:
char = '\u5272'
print(char) # Output: 割
Perl:
my $char = "\x{5272}";
print $char; # Output: 割
PHP:
$char = "\x{5272}";
echo $char; // Output: 割
Ruby:
char = "\u{5272}"
puts char # Output: 割
Rust:
let c = '\u{5272}';
println!("{}", c); // Output: 割
Go:
char := '\u5272'
fmt.Printf("%c\n", char) // Output: 割
CSS:
/* CSS content property */
.element::before {
content: "\005272"; /* 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=%E5%89%B2
MD5:
b051bb69ac6ca94147942c0d7050645a
SHA1:
02723b20065d90d4d25ee78dbb93f404c19da7c9
Base64:
5Ymy