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