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