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