C:
char c = '\uB996';
printf("%c\n", c); // Output: 릖
JavaScript:
const char = '\uB996';
console.log(char); // Output: 릖
Java:
char c = '\uB996';
System.out.println(c); // Output: 릖
JSON:
{"text": "\uB996"} // Value: 릖
Python:
char = '\uB996'
print(char) # Output: 릖
Perl:
my $char = "\x{B996}";
print $char; # Output: 릖
PHP:
$char = "\x{B996}";
echo $char; // Output: 릖
Ruby:
char = "\u{B996}"
puts char # Output: 릖
Rust:
let c = '\u{B996}';
println!("{}", c); // Output: 릖
Go:
char := '\uB996'
fmt.Printf("%c\n", char) // Output: 릖
CSS:
/* CSS content property */
.element::before {
content: "\00B996"; /* 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=%EB%A6%96
MD5:
45027a249cfab8db61a84f3efe75e45a
SHA1:
310ef80bf580be9baaa37fcd915db6077f1bbcb8
Base64:
66aW