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