C:
char c = '\uB691';
printf("%c\n", c); // Output: 뚑
JavaScript:
const char = '\uB691';
console.log(char); // Output: 뚑
Java:
char c = '\uB691';
System.out.println(c); // Output: 뚑
JSON:
{"text": "\uB691"} // Value: 뚑
Python:
char = '\uB691'
print(char) # Output: 뚑
Perl:
my $char = "\x{B691}";
print $char; # Output: 뚑
PHP:
$char = "\x{B691}";
echo $char; // Output: 뚑
Ruby:
char = "\u{B691}"
puts char # Output: 뚑
Rust:
let c = '\u{B691}';
println!("{}", c); // Output: 뚑
Go:
char := '\uB691'
fmt.Printf("%c\n", char) // Output: 뚑
CSS:
/* CSS content property */
.element::before {
content: "\00B691"; /* 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%9A%91
MD5:
9200f252008c0b194b3d1ccbcac5254e
SHA1:
432ea8099e81edf6c8a7c5dc0ef697893edd0827
Base64:
65qR