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