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