C:
char c = '\uB659';
printf("%c\n", c); // Output: 뙙
JavaScript:
const char = '\uB659';
console.log(char); // Output: 뙙
Java:
char c = '\uB659';
System.out.println(c); // Output: 뙙
JSON:
{"text": "\uB659"} // Value: 뙙
Python:
char = '\uB659'
print(char) # Output: 뙙
Perl:
my $char = "\x{B659}";
print $char; # Output: 뙙
PHP:
$char = "\x{B659}";
echo $char; // Output: 뙙
Ruby:
char = "\u{B659}"
puts char # Output: 뙙
Rust:
let c = '\u{B659}';
println!("{}", c); // Output: 뙙
Go:
char := '\uB659'
fmt.Printf("%c\n", char) // Output: 뙙
CSS:
/* CSS content property */
.element::before {
content: "\00B659"; /* 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%99%99
MD5:
3b9542373d0ee45487d4f6ca9792c798
SHA1:
0ef0432ff050c28f6d84261acda2a4d5c4d3236f
Base64:
65mZ