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