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