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