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