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