C:
char c = '\uB1E9';
printf("%c\n", c); // Output: 뇩
JavaScript:
const char = '\uB1E9';
console.log(char); // Output: 뇩
Java:
char c = '\uB1E9';
System.out.println(c); // Output: 뇩
JSON:
{"text": "\uB1E9"} // Value: 뇩
Python:
char = '\uB1E9'
print(char) # Output: 뇩
Perl:
my $char = "\x{B1E9}";
print $char; # Output: 뇩
PHP:
$char = "\x{B1E9}";
echo $char; // Output: 뇩
Ruby:
char = "\u{B1E9}"
puts char # Output: 뇩
Rust:
let c = '\u{B1E9}';
println!("{}", c); // Output: 뇩
Go:
char := '\uB1E9'
fmt.Printf("%c\n", char) // Output: 뇩
CSS:
/* CSS content property */
.element::before {
content: "\00B1E9"; /* 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%87%A9
MD5:
0a456a672e889ab261440550a0dec3fe
SHA1:
58cc09e50686d4c127ffdad959cfa8b4b9d7f91c
Base64:
64ep