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