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