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