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