C:
char c = '\uB6B1';
printf("%c\n", c); // Output: 뚱
JavaScript:
const char = '\uB6B1';
console.log(char); // Output: 뚱
Java:
char c = '\uB6B1';
System.out.println(c); // Output: 뚱
JSON:
{"text": "\uB6B1"} // Value: 뚱
Python:
char = '\uB6B1'
print(char) # Output: 뚱
Perl:
my $char = "\x{B6B1}";
print $char; # Output: 뚱
PHP:
$char = "\x{B6B1}";
echo $char; // Output: 뚱
Ruby:
char = "\u{B6B1}"
puts char # Output: 뚱
Rust:
let c = '\u{B6B1}';
println!("{}", c); // Output: 뚱
Go:
char := '\uB6B1'
fmt.Printf("%c\n", char) // Output: 뚱
CSS:
/* CSS content property */
.element::before {
content: "\00B6B1"; /* 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%9A%B1
MD5:
f904748ce5df96847e34bf982ad1c433
SHA1:
e7982f881dbc2acf74bdd41759dee0826254a9d7
Base64:
65qx