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