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