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