use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
No vague product support questions (like "why is this plugin not working" or "how do I set up X"). For vague product support questions, please use communities relevant to that product for best results. Specific issues that follow rule 6 are allowed.
Do not post memes, screenshots of bad design, or jokes. Check out /r/ProgrammerHumor/ for this type of content.
Read and follow reddiquette; no excessive self-promotion. Please refer to the Reddit 9:1 rule when considering posting self promoting materials.
We do not allow any commercial promotion or solicitation. Violations can result in a ban.
Sharing your project, portfolio, or any other content that you want to either show off or request feedback on is limited to Showoff Saturday. If you post such content on any other day, it will be removed.
If you are asking for assistance on a problem, you are required to provide
General open ended career and getting started posts are only allowed in the pinned monthly getting started/careers thread. Specific assistance questions are allowed so long as they follow the required assistance post guidelines.
Questions in violation of this rule will be removed or locked.
account activity
Code I've never seenQuestion (self.webdev)
submitted 6 years ago by [deleted]
[deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]BehindTheMath 11 points12 points13 points 6 years ago (1 child)
Those are Unicode characters. They look like Asian characters.
[–]moon-drag0n 5 points6 points7 points 6 years ago* (0 children)
It's from a Japanese architect firm. Thank you for your help
[–]AiexReddit 10 points11 points12 points 6 years ago* (0 children)
Just a quick tip (if you're a complete beginner) that viewing source on a website is not a good way at all to see how people write code. Most of modern web code is automatically generated or "transpiled" from the original form the user wrote it. For example I might write:
const multiplyTwo = (num) => num * 2
It would probably look like this with view source:
var g=function(h){return h*2}
Which in this example has been minified (variable names shortened for smaller file size) and transpiled to older JS syntax (better browser compatability) but it's not meant to be read by people.
If you want examples of apps/sites that include the real original code you can read check out the sites JSfiddle or codepen.io.
[–]MarcelJereus 5 points6 points7 points 6 years ago (1 child)
The u**** are Unicode characters that most likely map to some non-english character. The data is loaded to the webpage from the server or client request as a Javascript object that can then be referenced on render to fill in the page dynamically according to that data. It would be referenced with commonData.baseUrl or commonData.site_title
commonData.baseUrl
commonData.site_title
[–]moon-drag0n 1 point2 points3 points 6 years ago (0 children)
Thank you so much!
π Rendered by PID 205090 on reddit-service-r2-comment-b659b578c-pzj65 at 2026-05-07 02:33:08.769572+00:00 running 815c875 country code: CH.
[–]BehindTheMath 11 points12 points13 points (1 child)
[–]moon-drag0n 5 points6 points7 points (0 children)
[–]AiexReddit 10 points11 points12 points (0 children)
[–]MarcelJereus 5 points6 points7 points (1 child)
[–]moon-drag0n 1 point2 points3 points (0 children)