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