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