C:
char c = '\uB49E';
printf("%c\n", c); // Output: 뒞
JavaScript:
const char = '\uB49E';
console.log(char); // Output: 뒞
Java:
char c = '\uB49E';
System.out.println(c); // Output: 뒞
JSON:
{"text": "\uB49E"} // Value: 뒞
Python:
char = '\uB49E'
print(char) # Output: 뒞
Perl:
my $char = "\x{B49E}";
print $char; # Output: 뒞
PHP:
$char = "\x{B49E}";
echo $char; // Output: 뒞
Ruby:
char = "\u{B49E}"
puts char # Output: 뒞
Rust:
let c = '\u{B49E}';
println!("{}", c); // Output: 뒞
Go:
char := '\uB49E'
fmt.Printf("%c\n", char) // Output: 뒞
CSS:
/* CSS content property */
.element::before {
content: "\00B49E"; /* 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%92%9E
MD5:
def638bf937b51cacc302b9c71e67ef6
SHA1:
fcf6eb5b6882ded6e7ae0de3a3dd5aa2db8dbb2f
Base64:
65Ke