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