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