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